mirror of https://github.com/axmolengine/axmol.git
13 lines
242 B
C
13 lines
242 B
C
|
#ifndef __QUESTION_CONTAINER_SPRITE_H__
|
||
|
#define __QUESTION_CONTAINER_SPRITE_H__
|
||
|
|
||
|
#include "cocos2d.h"
|
||
|
|
||
|
class QuestionContainerSprite : public cocos2d::CCSprite
|
||
|
{
|
||
|
public:
|
||
|
virtual bool init();
|
||
|
};
|
||
|
|
||
|
#endif // __QUESTION_CONTAINER_SPRITE_H__
|