1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| //
| // WALuaPayProxy.h
| // WACocos2dxLua
| //
| // Created by wuyx on 16/9/8.
| //
| //
|
| #import <Foundation/Foundation.h>
| #import <WASdkIntf/WASdkIntf.h>
| @interface WALuaPayProxy : NSObject<WAInventoryDelegate,WAPaymentDelegate>
| +(void)init4Iap;
| +(void)queryInventory:(NSDictionary*)dict;
| +(void)payUI:(NSDictionary*)dict;
| +(BOOL)isPayServiceAvailable:(NSDictionary*)dict;
| @end
|
|