We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85daeb1 commit 19bbaafCopy full SHA for 19bbaaf
changelog.md
@@ -8,6 +8,7 @@
8
- Added Transparent BG & Transparent Lists
9
- Added Confirm Practice and Confirm Restart
10
- Fixed show hitboxes breaking (vanilla one)
11
+- Added thicker hitboxes
12
13
# 1.1.0
14
src/Hacks/Hitboxes.cpp
@@ -0,0 +1,14 @@
1
+#include <Geode/Geode.hpp>
2
+#include <Geode/modify/GJBaseGameLayer.hpp>
3
+#include "../Client/Client.h"
4
+
5
+using namespace geode::prelude;
6
7
+class $modify(GJBaseGameLayer) {
+ virtual void update(float p0)
+ {
+ GJBaseGameLayer::update(p0);
+ }
+};
0 commit comments