add some addresses and stuff

This commit is contained in:
HJfod 2022-05-15 11:49:28 +03:00
parent 755538e4b6
commit de36ebfb27
5 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View file

@ -50,3 +50,4 @@ Scratch/
# Ignore data stuff
Source/Geode/gen/data/todo/
Source/Geode/gen/data/Backup/
JesusChristGen.cpp

View file

@ -3931,7 +3931,7 @@ class PlayLayer : GJBaseGameLayer, CCCircleWaveDelegate, DialogDelegate {
cocos2d::CCScene* scene(GJGameLevel*) = mac 0x6b500, win 0x1fb690, ios 0x0;
void setupLevelStart(LevelSettingsObject*) = mac 0x6f560, win 0x1fb780, ios 0x0;
void setupReplay(gd::string) = mac 0x7e1e0, win 0x0, ios 0x0;
void shakeCamera(float, float, float) = mac 0x744a0, win 0x0, ios 0x0;
void shakeCamera(float, float, float) = mac 0x744a0, win 0x1ff210, ios 0x0;
void shouldBlend(int) = mac 0x771b0, win 0x0, ios 0x0;
void showCompleteEffect() = mac 0x738e0, win 0x0, ios 0x0;
void showCompleteText() = mac 0x73be0, win 0x0, ios 0x0;

View file

@ -20,7 +20,7 @@ static string getAddress(Function const& f) {
format = "addresser::getNonVirtual((types::member{})(&{}::{}))";
return fmt::format(format, f.global_index, f.parent_class->name, f.name);
}
else return "base::get()+" + f.binds[CacShare::platform];
else return "base::get() + " + f.binds[CacShare::platform];
}
int main(int argc, char** argv) {

View file

@ -47,3 +47,4 @@ add_gen(Wrapper GeneratedWrapper.hpp)
add_gen(Modify GeneratedModify.hpp)
add_gen(Type GeneratedType.hpp)
add_gen(Address GeneratedAddress.hpp)
# add_gen(JesusChrist DynamicTypes.cpp)

View file

@ -185,7 +185,7 @@ public:
* direction allowed to scroll. CCScrollViewDirectionBoth by default.
*/
CCScrollViewDirection getDirection() { return m_eDirection; }
virtual void setDirection(CCScrollViewDirection eDirection) { m_eDirection = eDirection; }
virtual void setDirection(CCScrollViewDirection eDirection);
CCScrollViewDelegate* getDelegate() { return m_pDelegate; }
void setDelegate(CCScrollViewDelegate* pDelegate) { m_pDelegate = pDelegate; }