Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

21 строка
623 B

  1. #if UNITY_ANDROID || UNITY_IPHONE || UNITY_STANDALONE_OSX || UNITY_TVOS
  2. // WARNING: Do not modify! Generated file.
  3. namespace UnityEngine.Purchasing.Security {
  4. public class {NAME}Tangle
  5. {
  6. private static byte[] data = System.Convert.FromBase64String("{DATA}");
  7. private static int[] order = new int[] { {ORDER} };
  8. private static int key = {KEY};
  9. public static readonly bool IsPopulated = {POPULATED};
  10. public static byte[] Data() {
  11. if (IsPopulated == false)
  12. return null;
  13. return Obfuscator.DeObfuscate(data, order, key);
  14. }
  15. }
  16. }
  17. #endif