Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion bindings/2.2081/Cocos2d.bro
Original file line number Diff line number Diff line change
Expand Up @@ -5965,15 +5965,25 @@ class DS_Dictionary {
bool vec2FromString(gd::string const&, cocos2d::CCPoint&) = m1 0x140824, imac 0x17a9b0;
}

[[link(android)]]
class ObjectDecoderDelegate {
virtual cocos2d::CCObject* getDecodedObject(int objectType, DS_Dictionary* data) = inline;
}

[[link(win, android)]]
class ObjectDecoder : cocos2d::CCNode {
// virtual ~ObjectDecoder();

static ObjectDecoder* sharedDecoder() = imac 0x792320, m1 0x69aa80, ios 0x2359f0;

cocos2d::CCObject* getDecodedObject(int objectType, DS_Dictionary* data) = imac 0x7923a0, m1 0x69aaf8, ios 0x235a5c;

virtual bool init() = imac 0x792390, m1 0x69aaf4, ios 0x235a58;

cocos2d::CCObject* getDecodedObject(int, DS_Dictionary*) = imac 0x7923a0, m1 0x69aaf8, ios 0x235a5c;
ObjectDecoderDelegate const* getDelegate() = inline;
void setDelegate(ObjectDecoderDelegate*) = inline;

ObjectDecoderDelegate* m_delegate;
}

[[link(win, android)]]
Expand Down
12 changes: 12 additions & 0 deletions bindings/2.2081/inline/ObjectDecoderDelegate.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#include <Geode/Bindings.hpp>


#if defined(GEODE_IS_WINDOWS) || defined(GEODE_IS_IOS)
#endif

#if defined(GEODE_IS_WINDOWS)
#endif

#if defined(GEODE_IS_IOS)
#endif

Loading