IAPDelegate.hpp 334 B

1234567891011121314151617181920212223242526
  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 "IAPDefine.hpp"
  10. NS_IAP_BEGIN
  11. class IAPDelegate {
  12. public:
  13. static IAPDelegate* getInstance();
  14. private:
  15. static IAPDelegate* _instance;
  16. };
  17. NS_IAP_END
  18. #endif /* IAPDelegate_hpp */