Skip to content

Commit

Permalink
aaaaaaaaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Feb 8, 2024
1 parent 3061ed4 commit 076a9d4
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
17 changes: 17 additions & 0 deletions src/Hacks/ForcePlatformer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@

using namespace geode::prelude;

#ifdef GEODE_IS_ANDROID

class $modify (UILayer)
{
bool init(GJBaseGameLayer* p0)
{
if (!UILayer::init(p0))
return false;

togglePlatformerMode(true);

return true;
}
};

#endif

class $modify (PlayerObject)
{
virtual void update(float dt)
Expand Down
2 changes: 1 addition & 1 deletion src/Hacks/Hitboxes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ class $modify(GJBaseGameLayer) {
{
GJBaseGameLayer::update(p0);


//this->updateDebugDraw();
}
};
10 changes: 10 additions & 0 deletions src/Hacks/LegacyPercent.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <Geode/Geode.hpp>
#include <Geode/modify/PlayLayer.hpp>
#include "../Client/Client.h"

using namespace geode::prelude;

class $modify (PlayLayer)
{

};

0 comments on commit 076a9d4

Please sign in to comment.