File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -54,33 +54,33 @@ dependency `extensions-unity-1.0.1`
54
54
public const string ID_COIN = " com.test.coin" ;
55
55
public static IapDataProduct PurchaseCoin ()
56
56
{
57
- return IapManager .Instance . PurchaseProduct (IapSettings .Instance .IapDataProducts [0 ]);
57
+ return IapManager .PurchaseProduct (IapSettings .Instance .IapDataProducts [0 ]);
58
58
}
59
59
60
60
public static bool IsPurchasedCoin ()
61
61
{
62
- return IapManager .Instance . IsPurchasedProduct (IapSettings .Instance .IapDataProducts [0 ]);
62
+ return IapManager .IsPurchasedProduct (IapSettings .Instance .IapDataProducts [0 ]);
63
63
}
64
64
65
65
public static string LocalizedPriceCoin ()
66
66
{
67
- return IapManager .Instance . LocalizedPriceProduct (IapSettings .Instance .IapDataProducts [0 ]);
67
+ return IapManager .LocalizedPriceProduct (IapSettings .Instance .IapDataProducts [0 ]);
68
68
}
69
69
70
70
public const string ID_REMOVEADS = " com.test.removeads" ;
71
71
public static IapDataProduct PurchaseRemoveads ()
72
72
{
73
- return IapManager .Instance . PurchaseProduct (IapSettings .Instance .IapDataProducts [1 ]);
73
+ return IapManager .PurchaseProduct (IapSettings .Instance .IapDataProducts [1 ]);
74
74
}
75
75
76
76
public static bool IsPurchasedRemoveads ()
77
77
{
78
- return IapManager .Instance . IsPurchasedProduct (IapSettings .Instance .IapDataProducts [1 ]);
78
+ return IapManager .IsPurchasedProduct (IapSettings .Instance .IapDataProducts [1 ]);
79
79
}
80
80
81
81
public static string LocalizedPriceRemoveads ()
82
82
{
83
- return IapManager .Instance . LocalizedPriceProduct (IapSettings .Instance .IapDataProducts [1 ]);
83
+ return IapManager .LocalizedPriceProduct (IapSettings .Instance .IapDataProducts [1 ]);
84
84
}
85
85
86
86
}
You can’t perform that action at this time.
0 commit comments