コード例 #1
0
 // Optionally call this if you want to fetch more products,
 // called automatically with pre-configured products
 // ReSharper disable once MemberCanBePrivate.Global
 public void GetProducts(string[] products, GetProductsFunc callback, string type = "subs")
 {
     ProductsCallback = callback;
     _wrapper.GetProducts(products, type);
 }
コード例 #2
0
ファイル: Purchases.cs プロジェクト: gfaraj/purchases-unity
 // Optionally call this if you want to fetch more products,
 // called automatically with pre-configured products
 // ReSharper disable once MemberCanBePrivate.Global
 public void GetProducts(string[] products, GetProductsFunc callback)
 {
     ProductsCallback = callback;
     _wrapper.GetProducts(products);
 }