From 6fcfbe2db967bdfa85d9023a066648943ff81aff Mon Sep 17 00:00:00 2001 From: camila314 <47485054+camila314@users.noreply.github.com> Date: Mon, 31 Jul 2023 14:18:45 -0500 Subject: [PATCH] new bindings yippee! --- bindings/Cocos2d.bro | 1 + bindings/GeometryDash.bro | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/Cocos2d.bro b/bindings/Cocos2d.bro index 7a1fba6cd..52b28daba 100644 --- a/bindings/Cocos2d.bro +++ b/bindings/Cocos2d.bro @@ -111,6 +111,7 @@ class cocos2d::CCDictionary { auto objectForKey(gd::string const&) = mac 0x190870, ios 0x2de988; auto removeAllObjects() = mac 0x190220; auto removeObjectForKey(intptr_t) = mac 0x1921d0; + auto removeObjectForKey(gd::string const&) = mac 0x191d40; auto setObject(cocos2d::CCObject*, intptr_t) = mac 0x191790, ios 0x2df734; auto setObject(cocos2d::CCObject*, gd::string const&) = mac 0x190dc0, ios 0x2dee7c; auto valueForKey(intptr_t) = mac 0x190cf0; diff --git a/bindings/GeometryDash.bro b/bindings/GeometryDash.bro index ff921ad27..31cb6f69f 100644 --- a/bindings/GeometryDash.bro +++ b/bindings/GeometryDash.bro @@ -2598,7 +2598,7 @@ class GJSearchObject : cocos2d::CCNode { return m_searchType; } - static GJSearchObject* create(SearchType nID) = win 0xc2b90; + static GJSearchObject* create(SearchType nID) = win 0xc2b90, mac 0x2df120; static GJSearchObject* create(SearchType nID, gd::string str) = win 0xc2c80, mac 0x2df310; static GJSearchObject* createFromKey(const char* key) = win 0xC2760; const char* getKey() = win 0xC30A0;