123456789101112131415161718192021222324 |
- //
- // IAPDelegate.hpp
- // TileManor
- //
- // Created by 徐炼新 on 2024/9/30.
- //
- #ifndef IAPDelegate_hpp
- #define IAPDelegate_hpp
- #include <cocos2d.h>
- class IAPDelegate {
- public:
- static IAPDelegate* getInstance();
- private:
- static IAPDelegate* _instance;
-
-
- };
- #endif /* IAPDelegate_hpp */
|