Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Feb 5, 2024
1 parent 85daeb1 commit 19bbaaf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Added Transparent BG & Transparent Lists
- Added Confirm Practice and Confirm Restart
- Fixed show hitboxes breaking (vanilla one)
- Added thicker hitboxes

# 1.1.0

Expand Down
14 changes: 14 additions & 0 deletions src/Hacks/Hitboxes.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include <Geode/Geode.hpp>
#include <Geode/modify/GJBaseGameLayer.hpp>
#include "../Client/Client.h"

using namespace geode::prelude;

class $modify(GJBaseGameLayer) {
virtual void update(float p0)
{
GJBaseGameLayer::update(p0);


}
};

0 comments on commit 19bbaaf

Please sign in to comment.