WebGLIOService.cs 913 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #if UNITY_WEBGL && !UNITY_EDITOR
  2. using System;
  3. using System.IO;
  4. namespace BestHTTP.PlatformSupport.FileSystem
  5. {
  6. public sealed class WebGLIOService : IIOService
  7. {
  8. public Stream CreateFileStream(string path, FileStreamModes mode)
  9. {
  10. throw new NotImplementedException();
  11. }
  12. public void DirectoryCreate(string path)
  13. {
  14. throw new NotImplementedException();
  15. }
  16. public bool DirectoryExists(string path)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public void FileDelete(string path)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. public bool FileExists(string path)
  25. {
  26. throw new NotImplementedException();
  27. }
  28. public string[] GetFiles(string path)
  29. {
  30. throw new NotImplementedException();
  31. }
  32. }
  33. }
  34. #endif