IAPDelegate.hpp 310 B

123456789101112131415161718192021222324
  1. //
  2. // IAPDelegate.hpp
  3. // TileManor
  4. //
  5. // Created by 徐炼新 on 2024/9/30.
  6. //
  7. #ifndef IAPDelegate_hpp
  8. #define IAPDelegate_hpp
  9. #include <cocos2d.h>
  10. class IAPDelegate {
  11. public:
  12. static IAPDelegate* getInstance();
  13. private:
  14. static IAPDelegate* _instance;
  15. };
  16. #endif /* IAPDelegate_hpp */