mirror of https://github.com/axmolengine/axmol.git
24 lines
522 B
C++
24 lines
522 B
C++
|
|
|
|
#ifndef __TestCpp__CustomReader__
|
|
#define __TestCpp__CustomReader__
|
|
|
|
#include "extensions/cocos-ext.h"
|
|
#include "cocostudio/DictionaryHelper.h"
|
|
#include "ui/CocosGUI.h"
|
|
|
|
|
|
class CustomReader : public cocos2d::Ref
|
|
{
|
|
public:
|
|
CustomReader();
|
|
~CustomReader();
|
|
|
|
static CustomReader* getInstance();
|
|
static void purge();
|
|
|
|
virtual void setProperties(const std::string& classType, cocos2d::ui::Widget* widget, const rapidjson::Value& customOptions);
|
|
};
|
|
|
|
#endif /* defined(__TestCpp__CustomReader__) */
|