Skip to content

Commit

Permalink
h
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Feb 2, 2024
1 parent a2dc9b1 commit 6375596
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 18 deletions.
6 changes: 1 addition & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ project(CheatClient VERSION 1.0.0)

file(GLOB SOURCES
src/*.cpp
#src/Hacks/*.cpp
src/Hacks/Speedhack.cpp
src/Hacks/NoRotation.cpp
src/Hacks/Noclip.cpp
src/Hacks/CopyHack.cpp
src/Hacks/*.cpp
src/Client/*.cpp
src/Client/*.h
)
Expand Down
4 changes: 2 additions & 2 deletions src/Hacks/CopyHack.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Geode/Geode.hpp>
/*#include <Geode/Geode.hpp>
#include <Geode/modify/LevelInfoLayer.hpp>
#include "../Client/Client.h"
Expand All @@ -21,4 +21,4 @@ class $modify(LevelInfoLayer) {
}
return true;
}
};
};*/
4 changes: 2 additions & 2 deletions src/Hacks/InstantComplete.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Geode/Geode.hpp>
/*#include <Geode/Geode.hpp>
#include <Geode/modify/GJBaseGameLayer.hpp>
#include "../Client/Client.h"
Expand All @@ -21,4 +21,4 @@ class $modify (GJBaseGameLayer)
}
}
}
};
};*/
4 changes: 2 additions & 2 deletions src/Hacks/NoDeathEffect.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Geode/Geode.hpp>
/*#include <Geode/Geode.hpp>
#include <Geode/modify/PlayerObject.hpp>
#include "../Client/Client.h"
Expand All @@ -13,4 +13,4 @@ class $modify (PlayerObject)
if (!Client::GetModuleEnabled("no-death"))
PlayerObject::playerDestroyed(p0);
}
};
};*/
4 changes: 2 additions & 2 deletions src/Hacks/NoShaders.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Geode/Geode.hpp>
/*#include <Geode/Geode.hpp>
#include <Geode/modify/ShaderLayer.hpp>
#include <Geode/modify/GJBaseGameLayer.hpp>
#include "../Client/Client.h"
Expand All @@ -14,4 +14,4 @@ class $modify (ShaderLayer)
if (!Client::GetModuleEnabled("no-shaders"))
ShaderLayer::performCalculations();
}
};
};*/
4 changes: 2 additions & 2 deletions src/Hacks/NocMark.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Geode/Geode.hpp>
/*#include <Geode/Geode.hpp>
#include <Geode/modify/EditLevelLayer.hpp>
#include "../Client/Client.h"
Expand All @@ -16,4 +16,4 @@ class $modify(EditLevelLayer) {
EditLevelLayer::onShare(sender);
}
};
};*/
3 changes: 2 additions & 1 deletion src/Hacks/SafeMode.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Geode/Geode.hpp>
/*#include <Geode/Geode.hpp>
#include <Geode/modify/GJGameLevel.hpp>
#include <Geode/modify/PlayLayer.hpp>
#include "../Client/Client.h"
Expand Down Expand Up @@ -61,3 +61,4 @@ class $modify(GJGameLevel) {
GJGameLevel::savePercentage(p0, p1, p2, p3, p4);
}
};
*/
4 changes: 2 additions & 2 deletions src/Hacks/SliderLimit.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Geode/Geode.hpp>
/*#include <Geode/Geode.hpp>
#include <Geode/modify/SliderTouchLogic.hpp>
#include <Geode/modify/Slider.hpp>
#include "../Client/Client.h"
Expand All @@ -24,4 +24,4 @@ class $modify (SliderTouchLogic)
this->ccTouchEnded(p0, p1);
#endif
}
};
};*/

0 comments on commit 6375596

Please sign in to comment.