axmol/tests/fairygui-tests/Source/DemoScene.h

27 lines
344 B
C
Raw Normal View History

2020-08-04 13:15:02 +08:00
#ifndef __DEMO_SCENE_H__
#define __DEMO_SCENE_H__
#include "cocos2d.h"
#include "FairyGUI.h"
USING_NS_FGUI;
2022-10-18 19:17:36 +08:00
class DemoScene : public ax::Scene
2020-08-04 13:15:02 +08:00
{
public:
bool init();
DemoScene();
virtual ~DemoScene();
protected:
virtual void continueInit();
GRoot* _groot;
private:
void onClose(EventContext* context);
};
#endif