Esempio n. 1
0
 public void GAPay(double amount, GA.PaySource source, string item)
 {
     if (FilterPlatform())
     {
         GA.Pay(amount, source, item, 1, amount);
     }
 }
Esempio n. 2
0
 public static void Pay(double cash, GA.PaySource paySource, string item, int amount, double price)
 {
             #if UNITY_IPHONE || UNITY_ANDROID
     GA.Pay(cash, paySource, item, amount, price);
             #endif
 }
Esempio n. 3
0
 public static void Pay(double cash, GA.PaySource paySource, double coin)
 {
             #if UNITY_IPHONE || UNITY_ANDROID
     GA.Pay(cash, paySource, coin);
             #endif
 }