Skip to content

Commit 19bbaaf

Browse files
committed
f
1 parent 85daeb1 commit 19bbaaf

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- Added Transparent BG & Transparent Lists
99
- Added Confirm Practice and Confirm Restart
1010
- Fixed show hitboxes breaking (vanilla one)
11+
- Added thicker hitboxes
1112

1213
# 1.1.0
1314

src/Hacks/Hitboxes.cpp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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) {
8+
virtual void update(float p0)
9+
{
10+
GJBaseGameLayer::update(p0);
11+
12+
13+
}
14+
};

0 commit comments

Comments
 (0)