Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
Viceroyy committed Jul 11, 2024
1 parent ae62b6c commit 7e7d388
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 18 deletions.
1 change: 0 additions & 1 deletion Arsenal/Arsenal.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@
<ClInclude Include="SDK\Entities\NetVarManager\NetVarManager.h" />
<ClInclude Include="SDK\Entities\PlayerResource.h" />
<ClInclude Include="SDK\EntityCacher\EntityCacher.h" />
<ClInclude Include="SDK\Globals\Globals.h" />
<ClInclude Include="SDK\Includes\basehandle.h" />
<ClInclude Include="SDK\Includes\bitbuf.h" />
<ClInclude Include="SDK\Includes\checksum_crc.h" />
Expand Down
3 changes: 0 additions & 3 deletions Arsenal/Arsenal.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,6 @@
<ClInclude Include="SDK\Includes\inetchannel.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="SDK\Globals\Globals.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="SDK\Entities\C_BaseAnimating.h">
<Filter>Header Files</Filter>
</ClInclude>
Expand Down
2 changes: 1 addition & 1 deletion Arsenal/Hooks/CBasePlayer_CalcPlayerView.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "../SDK/SDK.h"

#include "../../Features/CFG.h"
#include "../Features/CFG.h"

MAKE_HOOK(CBasePlayer_CalcPlayerView, U::Offsets.C_BasePlayer_CalcPlayerView, void, __fastcall, C_BasePlayer* pThis, void* edx, Vector& eyeOrigin, Vector& eyeAngles, float& fov)
{
Expand Down
6 changes: 3 additions & 3 deletions Arsenal/Hooks/ClientModeShared_CreateMove.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "../SDK/SDK.h"

#include "../../Features/EnginePrediction/EnginePrediction.h"
#include "../../Features/Misc/Misc.h"
#include "../../Features/NoSpread/NoSpread.h"
#include "../Features/EnginePrediction/EnginePrediction.h"
#include "../Features/Misc/Misc.h"
#include "../Features/NoSpread/NoSpread.h"

MAKE_HOOK(ClientModeShared_CreateMove, U::Offsets.ClientModeShared_CreateMove, bool, __fastcall, void* ecx, void* edx, float input_sample_frametime, CUserCmd* cmd)
{
Expand Down
2 changes: 1 addition & 1 deletion Arsenal/Hooks/IBaseClientDLL_FrameStageNotify.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "../SDK/SDK.h"
#include "../../SDK/Input/Input.h"
#include "../SDK/Input/Input.h"

MAKE_HOOK(IBaseClientDLL_FrameStageNotify, U::VFunc.Get<void*>(I::BaseClientDLL, 35u), void, __fastcall, void* ecx, void* edx, ClientFrameStage_t curStage)
{
Expand Down
12 changes: 6 additions & 6 deletions Arsenal/Hooks/IEngineVGui_Paint.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#include "../SDK/SDK.h"

#include "../../Features/ESP/ESP.h"
#include "../../Features/Menu/Menu.h"
#include "../../Features/Notification/Notification.h"
#include "../../Features/PlayerArrows/PlayerArrows.h"
#include "../../Features/Visual/Visual.h"
#include "../../Features/SpectatorList/SpectatorList.h"
#include "../Features/ESP/ESP.h"
#include "../Features/Menu/Menu.h"
#include "../Features/Notification/Notification.h"
#include "../Features/PlayerArrows/PlayerArrows.h"
#include "../Features/Visual/Visual.h"
#include "../Features/SpectatorList/SpectatorList.h"

MAKE_HOOK(IEngineVGui_Paint, U::VFunc.Get<void*>(I::EngineVGui, 13u), void, __fastcall, void* ecx, void* edx, int mode)
{
Expand Down
4 changes: 2 additions & 2 deletions Arsenal/Hooks/WINAPI_WndProc.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "WINAPI_WndProc.h"
#include "../../SDK/Input/Input.h"
#include "../../Features/Menu/Menu.h"
#include "../SDK/Input/Input.h"
#include "../Features/Menu/Menu.h"

LONG __stdcall WndProcHook::Func(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
Expand Down
2 changes: 1 addition & 1 deletion Arsenal/Hooks/WINAPI_WndProc.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "../../SDK/SDK.h"
#include "../SDK/SDK.h"

namespace WndProcHook
{
Expand Down

0 comments on commit 7e7d388

Please sign in to comment.