RuntimePlatform.cs 123 B

123456789
  1. namespace FF8
  2. {
  3. public enum RuntimePlatform
  4. {
  5. Windows = 1,
  6. Linux = 2,
  7. MacOSX = 3
  8. }
  9. }