// // TestScene.h // demo // // Created by Red_mini on 2024/10/11. // #ifndef TestScene_h #define TestScene_h #include "cocos2d.h" class TestScene : public cocos2d::Layer { public: static cocos2d::Scene* createScene(); virtual bool init(); CREATE_FUNC(TestScene); private: void createBoard(); void update(float dt); }; #endif /* TestScene_h */