Store.cs 303 B

1234567891011121314151617
  1. namespace UnityEngine.Monetization
  2. {
  3. public enum Store
  4. {
  5. NotSpecified,
  6. GooglePlay,
  7. AmazonAppStore,
  8. CloudMoolah,
  9. SamsungApps,
  10. XiaomiMiPay,
  11. MacAppStore,
  12. AppleAppStore,
  13. WinRT,
  14. TizenStore,
  15. FacebookStore
  16. }
  17. }