diff --git a/changelog.md b/changelog.md index db5df67..4725e2f 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/src/Hacks/Hitboxes.cpp b/src/Hacks/Hitboxes.cpp new file mode 100644 index 0000000..7e99bf9 --- /dev/null +++ b/src/Hacks/Hitboxes.cpp @@ -0,0 +1,14 @@ +#include +#include +#include "../Client/Client.h" + +using namespace geode::prelude; + +class $modify(GJBaseGameLayer) { + virtual void update(float p0) + { + GJBaseGameLayer::update(p0); + + + } +}; \ No newline at end of file