설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }