mirror of https://github.com/axmolengine/axmol.git
23 lines
515 B
C
23 lines
515 B
C
|
|
||
|
|
||
|
#ifndef __TestCpp__UILoadingBarTest_Editor__
|
||
|
#define __TestCpp__UILoadingBarTest_Editor__
|
||
|
|
||
|
#include "../UIScene_Editor.h"
|
||
|
|
||
|
class UILoadingBarTest_Editor : public UIScene_Editor
|
||
|
{
|
||
|
public:
|
||
|
UILoadingBarTest_Editor();
|
||
|
~UILoadingBarTest_Editor();
|
||
|
bool init();
|
||
|
void update(float delta);
|
||
|
void toCocosGUITestScene(Ref* sender, TouchEventType type);
|
||
|
|
||
|
protected:
|
||
|
UI_SCENE_EDITOR_CREATE_FUNC(UILoadingBarTest_Editor)
|
||
|
int _count;
|
||
|
};
|
||
|
|
||
|
#endif /* defined(__TestCpp__UILoadingBarTest_Editor__) */
|