mirror of https://github.com/axmolengine/axmol.git
39 lines
733 B
C++
39 lines
733 B
C++
#ifndef _INTERVAL_TEST_H_
|
|
#define _INTERVAL_TEST_H_
|
|
|
|
#include "../testBasic.h"
|
|
|
|
class IntervalLayer : public CCLayer
|
|
{
|
|
protected:
|
|
CCLabelBMFont* m_label0;
|
|
CCLabelBMFont* m_label1;
|
|
CCLabelBMFont* m_label2;
|
|
CCLabelBMFont* m_label3;
|
|
CCLabelBMFont* m_label4;
|
|
|
|
float m_time0, m_time1, m_time2, m_time3, m_time4;
|
|
|
|
public:
|
|
IntervalLayer(void);
|
|
virtual ~IntervalLayer();
|
|
public:
|
|
void onPause(CCObject* pSender);
|
|
|
|
void step1(float dt);
|
|
void step2(float dt);
|
|
void step3(float dt);
|
|
void step4(float dt);
|
|
void update(float dt);
|
|
|
|
//CREATE_NODE(IntervalLayer);
|
|
};
|
|
|
|
class IntervalTestScene : public TestScene
|
|
{
|
|
public:
|
|
virtual void runThisTest();
|
|
};
|
|
|
|
#endif
|