Platform.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 loyalsoft. All rights reserved.
  4. // Homepage: http://www.game7000.com/
  5. // Feedback: http://www.game7000.com/
  6. //------------------------------------------------------------
  7. using System;
  8. namespace UnityGameFramework.Editor.ResourceTools
  9. {
  10. [Flags]
  11. public enum Platform : int
  12. {
  13. Undefined = 0,
  14. /// <summary>
  15. /// Windows 32 位。
  16. /// </summary>
  17. Windows = 1 << 0,
  18. /// <summary>
  19. /// Windows 64 位。
  20. /// </summary>
  21. Windows64 = 1 << 1,
  22. /// <summary>
  23. /// macOS。
  24. /// </summary>
  25. MacOS = 1 << 2,
  26. /// <summary>
  27. /// Linux。
  28. /// </summary>
  29. Linux = 1 << 3,
  30. /// <summary>
  31. /// iOS。
  32. /// </summary>
  33. IOS = 1 << 4,
  34. /// <summary>
  35. /// Android。
  36. /// </summary>
  37. Android = 1 << 5,
  38. /// <summary>
  39. /// Windows Store。
  40. /// </summary>
  41. WindowsStore = 1 << 6,
  42. /// <summary>
  43. /// WebGL。
  44. /// </summary>
  45. WebGL = 1 << 7,
  46. }
  47. }