mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-03 04:36:55 -05:00
21 lines
379 B
C
21 lines
379 B
C
|
#ifndef __OBJECTDECODER_H__
|
||
|
#define __OBJECTDECODER_H__
|
||
|
|
||
|
#include "../../include/cocos2d.h"
|
||
|
|
||
|
// @note RobTop Addition
|
||
|
class CC_DLL ObjectDecoder {
|
||
|
public:
|
||
|
ObjectDecoder();
|
||
|
~ObjectDecoder() {}
|
||
|
GEODE_CUSTOM_CONSTRUCTOR_BEGIN(ObjectDecoder)
|
||
|
|
||
|
static ObjectDecoder* sharedDecoder();
|
||
|
|
||
|
cocos2d::CCObject* getDecodedObject(int, DS_Dictionary*);
|
||
|
|
||
|
virtual bool init();
|
||
|
};
|
||
|
|
||
|
#endif
|