12345678910111213141516171819202122232425262728293031323334 |
- //
- // TestScene.h
- // demo
- //
- // Created by Red_mini on 2024/10/11.
- //
- #ifndef TestScene_h
- #define TestScene_h
- #include "cocos2d.h"
- #include "RUReboltLayer.h"
- #include "IAPCtlShop.hpp"
- class TestScene : public cocos2d::Layer {
- public:
- static cocos2d::Scene* createScene();
- virtual bool init();
-
- CREATE_FUNC(TestScene);
-
- private:
- void createBoard();
- void onNotifyDevelopment(const redutils::ReboltNotifyData& data);
- void update(float dt);
-
- iap::IAPCtlShop* _iapShop;
-
- std::vector<std::string> _placementIDs;
-
- };
- #endif /* TestScene_h */
|