2012-06-16 05:48:36 +08:00
|
|
|
#ifndef _PARTICLESYSTEMTESTLOADER_H_
|
|
|
|
#define _PARTICLESYSTEMTESTLOADER_H_
|
|
|
|
|
|
|
|
#include "ParticleSystemTestLayer.h"
|
|
|
|
|
|
|
|
/* Forward declaration. */
|
|
|
|
class CCBReader;
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class ParticleSystemTestLayerLoader : public cocos2d::extension::LayerLoader {
|
2012-06-16 05:48:36 +08:00
|
|
|
public:
|
|
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(ParticleSystemTestLayerLoader, loader);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(ParticleSystemTestLayer);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|