暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SkAdNetworkLocalSource.cs 396B

1234567891011121314151617
  1. using System;
  2. using System.IO;
  3. using UnityEngine;
  4. namespace UnityEngine.Advertisements.Editor {
  5. internal class SkAdNetworkLocalSource : ISkAdNetworkSource {
  6. public string Path { get; }
  7. public SkAdNetworkLocalSource(string path) {
  8. Path = path;
  9. }
  10. public Stream Open() {
  11. return new FileStream(Path, FileMode.Open);
  12. }
  13. }
  14. }