Skip to content

Commit

Permalink
added client version control
Browse files Browse the repository at this point in the history
 + nlohmann/json library was included in the project.
+ VersionControl class was created and it checks if the client is up to date.
+ CLIENT_VERSION macro defined.
  • Loading branch information
jadis0x committed Jun 2, 2024
1 parent 3c474a3 commit a1c4c9c
Show file tree
Hide file tree
Showing 7 changed files with 24,938 additions and 10 deletions.
3 changes: 3 additions & 0 deletions IL2CppDLL.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<ClCompile Include="user\features\misc\misc.cpp" />
<ClCompile Include="user\hooks\hooks.cpp" />
<ClCompile Include="user\main.cpp" />
<ClCompile Include="user\network\VersionControl.cpp" />
<ClCompile Include="user\players\players.cpp" />
<ClCompile Include="user\settings\settings.cpp" />
<ClCompile Include="user\utils\utils.cpp" />
Expand All @@ -83,6 +84,7 @@
<ClInclude Include="include\imgui\imstb_rectpack.h" />
<ClInclude Include="include\imgui\imstb_textedit.h" />
<ClInclude Include="include\imgui\imstb_truetype.h" />
<ClInclude Include="include\json.hpp" />
<ClInclude Include="include\Minhook\include\MinHook.h" />
<ClInclude Include="include\Minhook\src\buffer.h" />
<ClInclude Include="include\Minhook\src\HDE\hde32.h" />
Expand All @@ -99,6 +101,7 @@
<ClInclude Include="user\features\misc\misc.h" />
<ClInclude Include="user\hooks\hooks.hpp" />
<ClInclude Include="user\main.h" />
<ClInclude Include="user\network\VersionControl.h" />
<ClInclude Include="user\players\players.h" />
<ClInclude Include="user\settings\settings.hpp" />
<ClInclude Include="user\utils\utils.hpp" />
Expand Down
12 changes: 12 additions & 0 deletions IL2CppDLL.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@
<ClCompile Include="user\features\esp\esp.cpp">
<Filter>user\features\esp</Filter>
</ClCompile>
<ClCompile Include="user\network\VersionControl.cpp">
<Filter>user\network</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="user\main.h">
Expand Down Expand Up @@ -201,6 +204,12 @@
<ClInclude Include="user\features\esp\esp.hpp">
<Filter>user\features\esp</Filter>
</ClInclude>
<ClInclude Include="user\network\VersionControl.h">
<Filter>user\network</Filter>
</ClInclude>
<ClInclude Include="include\json.hpp">
<Filter>include</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter Include="appdata">
Expand Down Expand Up @@ -245,5 +254,8 @@
<Filter Include="user\features\esp">
<UniqueIdentifier>{8f74b1c2-1d3c-4a14-8a6f-7bf00e07d57e}</UniqueIdentifier>
</Filter>
<Filter Include="user\network">
<UniqueIdentifier>{faef4024-c359-4051-90fc-8735a4acbe8f}</UniqueIdentifier>
</Filter>
</ItemGroup>
</Project>
Loading

0 comments on commit a1c4c9c

Please sign in to comment.