13 lines
301 B
C
13 lines
301 B
C
|
|
#ifndef _PARTICLESYSTEMTESTLAYER_H_
|
||
|
|
#define _PARTICLESYSTEMTESTLAYER_H_
|
||
|
|
|
||
|
|
#include "cocos2d.h"
|
||
|
|
#include "extensions/cocos-ext.h"
|
||
|
|
|
||
|
|
class ParticleSystemTestLayer : public cocos2d::Layer {
|
||
|
|
public:
|
||
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_WITH_INIT_METHOD(ParticleSystemTestLayer, create);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|