Ejemplo n.º 1
0
        public static void GetIntAsync(string key, AsyncGetIntCallbackMethod callback)
        {
            if (callback == null)
            {
                return;
            }

            waitForLastOperation();
            asyncKey            = key;
            asyncGetIntCallback = callback;

            operationType       = PlayerPrefsEx_OperationTypes.GetInt;
            performingOperation = true;
        }
Ejemplo n.º 2
0
		public static void GetIntAsync(string key, AsyncGetIntCallbackMethod callback)
		{
			if (callback == null) return;

			waitForLastOperation();
			asyncKey = key;
			asyncGetIntCallback = callback;

			operationType = PlayerPrefsEx_OperationTypes.GetInt;
			performingOperation = true;
		}