geode/loader/include/Geode/cocos/robtop/xml/ObjectDecoder.h

21 lines
404 B
C
Raw Normal View History

2024-07-24 08:00:54 -04:00
#ifndef __OBJECTDECODER_H__
#define __OBJECTDECODER_H__
#include "../../include/cocos2d.h"
// @note RobTop Addition
2024-07-24 09:48:33 -04:00
class CC_DLL ObjectDecoder : public cocos2d::CCNode {
2024-07-24 08:00:54 -04:00
public:
ObjectDecoder();
~ObjectDecoder() {}
GEODE_CUSTOM_CONSTRUCTOR_BEGIN(ObjectDecoder)
static ObjectDecoder* sharedDecoder();
cocos2d::CCObject* getDecodedObject(int, DS_Dictionary*);
virtual bool init();
};
#endif