Beispiel #1
0
 private void InitIAPAnalytics(string productId, float cost, int quantity, string local_currency, IAPAnalytics.IAPStore app_store, string durablity, int level, string context, string type, string subtype)
 {
     this._productId      = productId;
     this._cost           = cost;
     this._quantity       = quantity;
     this._local_currency = local_currency;
     this._app_store      = app_store;
     this._durability     = durablity;
     this._level          = level;
     this._context        = context;
     this._type           = type;
     this._subtype        = subtype;
 }
Beispiel #2
0
 public IAPAnalytics(string productId, float cost, int quantity, string local_currency, IAPAnalytics.IAPStore app_store, string durablity, int level, string context, string type, string subtype)
 {
     this.InitIAPAnalytics(productId, cost, quantity, local_currency, app_store, durablity, level, context, type, subtype);
 }
Beispiel #3
0
 public IAPAnalytics(string productId, float cost, int quantity, string local_currency, IAPAnalytics.IAPStore app_store, string durablity, int level)
 {
     this.InitIAPAnalytics(productId, cost, quantity, local_currency, app_store, durablity, level, null, null, null);
 }