he can go back now :D

This commit is contained in:
Chloe 2024-07-25 17:11:37 -07:00
parent d13b1dc269
commit dceb91e181
No known key found for this signature in database
GPG key ID: D2D404DD810FE0E3

View file

@ -4,13 +4,10 @@
#include "../../include/cocos2d.h"
// @note RobTop Addition
/*
// TODO: uncomment just before 3.3.1 releases, it requires a change in bindings/codegen as well
class CC_DLL ObjectDecoderDelegate {
public:
virtual cocos2d::CCObject* getDecodedObject(int, DS_Dictionary*) { return nullptr; }
virtual cocos2d::CCObject* getDecodedObject(int objectType, DS_Dictionary* data) { return nullptr; }
};
*/
// @note RobTop Addition
class CC_DLL ObjectDecoder : public cocos2d::CCNode {
@ -25,10 +22,8 @@ public:
virtual bool init();
/*
public:
ObjectDecoderDelegate* m_delegate;
*/
};
#endif