Brak opisu
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.

PurchasingSettingsKeywords.cs 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Collections.Generic;
  2. namespace UnityEditor.Purchasing
  3. {
  4. internal static class PurchasingSettingsKeywords
  5. {
  6. const string k_KeywordPurchasing = "purchasing";
  7. const string k_KeywordInApp = "in-app";
  8. const string k_KeywordPurchase = "purchase";
  9. const string k_KeywordRevenue = "revenue";
  10. const string k_KeywordPlatforms = "platforms";
  11. const string k_KeywordGooglePlay = "Google Play";
  12. const string k_KeywordPublicKey = "public key";
  13. const string k_KeywordReceipt = "receipt";
  14. const string k_KeywordObfuscator = "obfuscator";
  15. const string k_KeywordCatalog = "catalog";
  16. internal static List<string> GetKeywords()
  17. {
  18. return new List<string>()
  19. {
  20. k_KeywordPurchasing,
  21. k_KeywordInApp,
  22. k_KeywordPurchase,
  23. k_KeywordRevenue,
  24. k_KeywordPlatforms,
  25. k_KeywordGooglePlay,
  26. k_KeywordPublicKey,
  27. k_KeywordReceipt,
  28. k_KeywordObfuscator,
  29. k_KeywordCatalog
  30. };
  31. }
  32. }
  33. }