axmol/samples/Cpp/TestCpp/Classes/NewEventDispatcherTest/NewEventDispatcherTest.h

52 lines
1.0 KiB
C
Raw Normal View History

2013-09-13 16:38:21 +08:00
//
// NewEventDispatcherTest.h
// samples
//
// Created by James Chen on 9/13/13.
//
//
#ifndef __samples__NewEventDispatcherTest__
#define __samples__NewEventDispatcherTest__
#include "cocos2d.h"
#include "../testBasic.h"
#include "../BaseTest.h"
class EventDispatcherTestScene : public TestScene
{
public:
virtual void runThisTest();
};
class EventDispatcherTestDemo : public BaseTest
{
public:
virtual void onEnter();
virtual std::string title();
virtual std::string subtitle();
void backCallback(Object* sender);
void nextCallback(Object* sender);
void restartCallback(Object* sender);
};
class TouchableSpriteTest : public EventDispatcherTestDemo
{
public:
virtual void onEnter();
virtual std::string title();
virtual std::string subtitle();
};
class FixedPriorityChangedTest : public EventDispatcherTestDemo
{
public:
virtual void onEnter();
virtual std::string title();
virtual std::string subtitle();
};
2013-09-13 16:38:21 +08:00
#endif /* defined(__samples__NewEventDispatcherTest__) */