123456789101112131415161718192021222324252627282930 |
- //
- // IAPPlatform.h
- // cocos2d_libs
- //
- // Created by ZhengSong on 2021/4/29.
- //
- #ifndef IAPPlatform_h
- #define IAPPlatform_h
- #include "IAPUtils.h"
- namespace iap {
- class IAPProductInfo;
- class IAPPlatform {
- public:
- static void loadIAPConfig(const std::string& iapConfigJsonString) {}
- static void purchase(const std::string& productId) {}
- static IAPProductInfo getProductInfo(const std::string& productId) {}
-
- static void setLogMode(bool isLog) {}
- };
- } // end namespace iap
- #endif /* IAPPlatform_h */
|