├── .gitignore ├── CDrive ├── Configs │ ├── GrenadeHelper │ │ ├── de_cache │ │ │ └── config.json │ │ ├── de_cbble │ │ │ └── config.json │ │ ├── de_dust2 │ │ │ └── config.json │ │ ├── de_mirage │ │ │ └── config.json │ │ └── de_overpass │ │ │ └── config.json │ ├── WalkBot │ │ ├── cs_office │ │ │ └── Config.json │ │ ├── de_cbble │ │ │ └── Config.json │ │ ├── de_dust2 │ │ │ └── Config.json │ │ ├── de_mirage │ │ │ └── Config.json │ │ └── de_overpas │ │ │ └── Config.json │ └── currentlegit.ini ├── Hitsounds │ ├── ComboWhore.wav │ ├── Dominating.wav │ ├── Doubekill.wav │ ├── Firstblood.wav │ ├── Godlike.wav │ ├── Killingspree.wav │ ├── MegaKill.wav │ ├── Monsterkill.wav │ ├── Ownage.wav │ ├── Perfect.wav │ ├── Rampage.wav │ ├── RoundEnd.wav │ ├── Triplekill.wav │ ├── Ultrakill.wav │ ├── WickedSick.wav │ ├── holyshit.wav │ ├── ludicrouskill.wav │ └── unstoppable.wav └── OLD Faceit Bypass W7 │ └── X-IT.exe ├── Config.cpp ├── Config.h ├── DX9 SDK ├── Include │ ├── D2D1.h │ ├── D2D1Helper.h │ ├── D2DBaseTypes.h │ ├── D2Derr.h │ ├── D3D10.h │ ├── D3D10_1.h │ ├── D3D10_1shader.h │ ├── D3D10effect.h │ ├── D3D10shader.h │ ├── D3D11.h │ ├── D3D11SDKLayers.h │ ├── D3D11Shader.h │ ├── D3DCSX.h │ ├── D3DX10.h │ ├── D3DX10core.h │ ├── D3DX10math.h │ ├── D3DX10math.inl │ ├── D3DX10mesh.h │ ├── D3DX10tex.h │ ├── D3DX11.h │ ├── D3DX11async.h │ ├── D3DX11core.h │ ├── D3DX11tex.h │ ├── D3DX_DXGIFormatConvert.inl │ ├── D3Dcommon.h │ ├── D3Dcompiler.h │ ├── DWrite.h │ ├── DXGI.h │ ├── DXGIFormat.h │ ├── DXGIType.h │ ├── Dcommon.h │ ├── DxErr.h │ ├── PIXPlugin.h │ ├── X3DAudio.h │ ├── XAPO.h │ ├── XAPOBase.h │ ├── XAPOFX.h │ ├── XAudio2.h │ ├── XAudio2fx.h │ ├── XDSP.h │ ├── XInput.h │ ├── audiodefs.h │ ├── comdecl.h │ ├── d3d10misc.h │ ├── d3d10sdklayers.h │ ├── d3d9.h │ ├── d3d9caps.h │ ├── d3d9types.h │ ├── d3dx10async.h │ ├── d3dx9.h │ ├── d3dx9anim.h │ ├── d3dx9core.h │ ├── d3dx9effect.h │ ├── d3dx9math.h │ ├── d3dx9math.inl │ ├── d3dx9mesh.h │ ├── d3dx9shader.h │ ├── d3dx9shape.h │ ├── d3dx9tex.h │ ├── d3dx9xof.h │ ├── dinput.h │ ├── dinputd.h │ ├── dsconf.h │ ├── dsetup.h │ ├── dsound.h │ ├── dxdiag.h │ ├── dxfile.h │ ├── dxsdkver.h │ ├── gameux.h │ ├── rmxfguid.h │ ├── rmxftmpl.h │ ├── rpcsal.h │ ├── xact3.h │ ├── xact3d3.h │ ├── xact3wb.h │ ├── xma2defs.h │ ├── xnamath.h │ ├── xnamathconvert.inl │ ├── xnamathmatrix.inl │ ├── xnamathmisc.inl │ └── xnamathvector.inl └── Lib │ └── x86 │ ├── D3DCSX.lib │ ├── D3DCSXd.lib │ ├── DxErr.lib │ ├── X3DAudio.lib │ ├── XAPOFX.lib │ ├── XInput.lib │ ├── d2d1.lib │ ├── d3d10.lib │ ├── d3d10_1.lib │ ├── d3d11.lib │ ├── d3d9.lib │ ├── d3dcompiler.lib │ ├── d3dx10.lib │ ├── d3dx10d.lib │ ├── d3dx11.lib │ ├── d3dx11d.lib │ ├── d3dx9.lib │ ├── d3dx9d.lib │ ├── d3dxof.lib │ ├── dinput8.lib │ ├── dsetup.lib │ ├── dsound.lib │ ├── dwrite.lib │ ├── dxgi.lib │ ├── dxguid.lib │ ├── xapobase.lib │ └── xapobased.lib ├── DllMain.cpp ├── DllMain.h ├── Features.h ├── GUI ├── Menu.cpp ├── Menu.h ├── Tabs │ ├── AimTabs │ │ ├── AimBotTab.cpp │ │ ├── AimBotTab.h │ │ ├── TriggerBotTab.cpp │ │ └── TriggerBotTab.h │ ├── HvHTab.cpp │ ├── HvHTab.h │ ├── HvHTabs │ │ ├── MiscHvHTab.cpp │ │ ├── MiscHvHTab.h │ │ ├── airbornehvhtab.cpp │ │ ├── airbornehvhtab.h │ │ ├── movinghvhtab.cpp │ │ ├── movinghvhtab.h │ │ ├── standinghvhtab.cpp │ │ └── standinghvhtab.h │ ├── LobbyChanger.cpp │ ├── LobbyChanger.h │ ├── ModelsTab.cpp │ ├── ModelsTab.h │ ├── SkinsTab.cpp │ ├── SkinsTab.h │ ├── aimtab.cpp │ └── aimtab.h └── Windows │ ├── FPSWindow.cpp │ ├── FPSWindow.h │ ├── configs.cpp │ ├── configs.h │ ├── eventlogger.cpp │ ├── eventlogger.h │ ├── resolverinfo.cpp │ ├── resolverinfo.h │ ├── skinmodelchanger.cpp │ └── skinmodelchanger.h ├── Hacks ├── AimBot.cpp ├── AimBot.h ├── AirStuck.cpp ├── AirStuck.h ├── AntiAim.cpp ├── AntiAim.h ├── AsusWalls.cpp ├── AsusWalls.h ├── AutoAccept.cpp ├── AutoAccept.h ├── AutoBlock.cpp ├── AutoBlock.h ├── AutoDefuse.cpp ├── AutoDefuse.h ├── AutoStrafe.cpp ├── AutoStrafe.h ├── AutoWall.cpp ├── AutoWall.h ├── BunnyHop.cpp ├── BunnyHop.h ├── Chams.cpp ├── Chams.h ├── ClanTagChanger.cpp ├── ClanTagChanger.h ├── CustomGlow.cpp ├── CustomGlow.h ├── DLights.cpp ├── DLights.h ├── ESP.cpp ├── ESP.h ├── EdgeJump.cpp ├── EdgeJump.h ├── FOVChanger.cpp ├── FOVChanger.h ├── FakeLag.cpp ├── FakeLag.h ├── FakeWalk.cpp ├── FakeWalk.h ├── GrenadeHelper.cpp ├── GrenadeHelper.h ├── HitMarkers.cpp ├── HitMarkers.h ├── JumpThrow.cpp ├── JumpThrow.h ├── LagComp.cpp ├── LagComp.h ├── LobbyMod.cpp ├── LobbyMod.h ├── NameChanger.cpp ├── NameChanger.h ├── NameStealer.cpp ├── NameStealer.h ├── NoFlash.cpp ├── NoFlash.h ├── NoSky.cpp ├── NoSky.h ├── NoSmoke.cpp ├── NoSmoke.h ├── Noduckcooldown.cpp ├── Noduckcooldown.h ├── PredictionSystem.cpp ├── PredictionSystem.h ├── Radar.cpp ├── Radar.h ├── RecoilCrosshair.cpp ├── RecoilCrosshair.h ├── ReportBot.cpp ├── ReportBot.h ├── Resolver.cpp ├── Resolver.h ├── ShowRanks.cpp ├── ShowRanks.h ├── ShowSpectators.cpp ├── ShowSpectators.h ├── SniperCrosshair.cpp ├── SniperCrosshair.h ├── Spammer.cpp ├── Spammer.h ├── ThirdPerson.cpp ├── ThirdPerson.h ├── Tickbase.cpp ├── Tickbase.h ├── Tracer.cpp ├── Tracer.h ├── TriggerBot.cpp ├── TriggerBot.h ├── View.cpp ├── View.h ├── WalkBot.cpp ├── WalkBot.h ├── angleindicator.cpp ├── angleindicator.h ├── autoknife.cpp ├── autoknife.h ├── disablepostprocessing.cpp ├── disablepostprocessing.h ├── grenadeprediction.cpp ├── grenadeprediction.h ├── lbyindicator.cpp ├── lbyindicator.h ├── moonwalk.cpp ├── moonwalk.h ├── nofog.cpp ├── nofog.h ├── speedindicator.cpp ├── speedindicator.h ├── valvedscheck.cpp └── valvedscheck.h ├── Hooks.cpp ├── Hooks.h ├── Image └── bg.png ├── Interfaces.cpp ├── Interfaces.h ├── LICENSE ├── ProfileChanger ├── MemAlloc.h ├── Messages.h ├── Utils_fox.cpp ├── Utils_fox.h ├── valve_parser.cpp └── valve_parser.h ├── ProtoUtils ├── ProtoField.h ├── ProtoWriter.h ├── ProtobufReader.h ├── Protobuffs.cpp └── Protobuffs.h ├── README.md ├── Renderer.cpp ├── Renderer.h ├── SDK ├── CBaseClientState.h ├── CClientState.h ├── CEffects.h ├── CGlobalVars.cpp ├── CGlobalVars.h ├── CNetworkStringTable.h ├── CPlayerResource.h ├── CView.h ├── Color.cpp ├── Color.h ├── Definitions.h ├── FnvHash.hpp ├── GLOBALSHHH.H ├── Globalshhh.cpp ├── Globalshhh.h ├── GlowObject.h ├── IAppSystem.h ├── IBaseClientDll.h ├── IClientEntity.h ├── IClientEntityList.h ├── IClientMode.h ├── ICommandLine.h ├── ICvar.cpp ├── ICvar.h ├── IEngineClient.h ├── IEngineTrace.h ├── IGameEventManager.h ├── IGameMovement.h ├── IInputSystem.cpp ├── IInputSystem.h ├── IMaterial.h ├── IMaterialSystem.h ├── IPhysicalSurfaceProps.h ├── IPrediction.h ├── ISurface.h ├── IVDebugOverlay.h ├── IVModelInfo.h ├── IVModelRender.h ├── IVPanel.h ├── Inconstructible.h ├── KeyValues.h ├── NetvarManager.cpp ├── NetvarManager.h ├── Offsets.cpp ├── Offsets.h ├── SDK.h ├── SteamAPI.h ├── Steamworks │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api.json │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_api_interop.cs │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── VMTHook.h ├── Vector.h ├── VirtualMethod.h ├── WeaponSystem.h ├── getvfunc.h ├── iLocalize.h ├── key_values.cpp ├── key_values.h ├── materialconfig.cpp ├── materialconfig.h ├── materialsystem_config.h └── pad.h ├── Settings.cpp ├── Settings.h ├── Shared.h ├── Shortcuts2.cpp ├── Shortcuts2.h ├── SkinChanger.cpp ├── SkinChanger.h ├── Utils ├── Draw.cpp ├── Draw.h ├── Entity.cpp ├── Entity.h ├── FindPattern.cpp ├── FindPattern.h ├── Math.cpp ├── Math.h ├── Singleton.hpp ├── Skins.cpp ├── Skins.h ├── Util.cpp ├── Util.h ├── Util_Items.cpp ├── Util_Items.h ├── Util_SDK.cpp ├── Util_SDK.h ├── XorStr.hpp ├── memmem.h ├── pstring.h └── recvproxyhook.h ├── XHOOK.sln ├── google └── protobuf │ ├── compiler │ ├── code_generator.cc │ ├── code_generator.h │ ├── command_line_interface.cc │ ├── command_line_interface.h │ ├── command_line_interface_unittest.cc │ ├── cpp │ │ ├── cpp_bootstrap_unittest.cc │ │ ├── cpp_enum.cc │ │ ├── cpp_enum.h │ │ ├── cpp_enum_field.cc │ │ ├── cpp_enum_field.h │ │ ├── cpp_extension.cc │ │ ├── cpp_extension.h │ │ ├── cpp_field.cc │ │ ├── cpp_field.h │ │ ├── cpp_file.cc │ │ ├── cpp_file.h │ │ ├── cpp_generator.cc │ │ ├── cpp_generator.h │ │ ├── cpp_helpers.cc │ │ ├── cpp_helpers.h │ │ ├── cpp_message.cc │ │ ├── cpp_message.h │ │ ├── cpp_message_field.cc │ │ ├── cpp_message_field.h │ │ ├── cpp_options.h │ │ ├── cpp_plugin_unittest.cc │ │ ├── cpp_primitive_field.cc │ │ ├── cpp_primitive_field.h │ │ ├── cpp_service.cc │ │ ├── cpp_service.h │ │ ├── cpp_string_field.cc │ │ ├── cpp_string_field.h │ │ ├── cpp_test_bad_identifiers.proto │ │ ├── cpp_unittest.cc │ │ └── cpp_unittest.h │ ├── importer.cc │ ├── importer.h │ ├── importer_unittest.cc │ ├── java │ │ ├── java_doc_comment.cc │ │ ├── java_doc_comment.h │ │ ├── java_doc_comment_unittest.cc │ │ ├── java_enum.cc │ │ ├── java_enum.h │ │ ├── java_enum_field.cc │ │ ├── java_enum_field.h │ │ ├── java_extension.cc │ │ ├── java_extension.h │ │ ├── java_field.cc │ │ ├── java_field.h │ │ ├── java_file.cc │ │ ├── java_file.h │ │ ├── java_generator.cc │ │ ├── java_generator.h │ │ ├── java_helpers.cc │ │ ├── java_helpers.h │ │ ├── java_message.cc │ │ ├── java_message.h │ │ ├── java_message_field.cc │ │ ├── java_message_field.h │ │ ├── java_plugin_unittest.cc │ │ ├── java_primitive_field.cc │ │ ├── java_primitive_field.h │ │ ├── java_service.cc │ │ ├── java_service.h │ │ ├── java_string_field.cc │ │ └── java_string_field.h │ ├── main.cc │ ├── mock_code_generator.cc │ ├── mock_code_generator.h │ ├── package_info.h │ ├── parser.cc │ ├── parser.h │ ├── parser_unittest.cc │ ├── plugin.cc │ ├── plugin.h │ ├── plugin.pb.cc │ ├── plugin.pb.h │ ├── plugin.proto │ ├── python │ │ ├── python_generator.cc │ │ ├── python_generator.h │ │ └── python_plugin_unittest.cc │ ├── subprocess.cc │ ├── subprocess.h │ ├── test_plugin.cc │ ├── zip_output_unittest.sh │ ├── zip_writer.cc │ └── zip_writer.h │ ├── descriptor.cc │ ├── descriptor.h │ ├── descriptor.pb.cc │ ├── descriptor.pb.h │ ├── descriptor.proto │ ├── descriptor_database.cc │ ├── descriptor_database.h │ ├── descriptor_database_unittest.cc │ ├── descriptor_unittest.cc │ ├── dynamic_message.cc │ ├── dynamic_message.h │ ├── dynamic_message_unittest.cc │ ├── extension_set.cc │ ├── extension_set.h │ ├── extension_set_heavy.cc │ ├── extension_set_unittest.cc │ ├── generated_enum_reflection.h │ ├── generated_message_reflection.cc │ ├── generated_message_reflection.h │ ├── generated_message_reflection_unittest.cc │ ├── generated_message_util.cc │ ├── generated_message_util.h │ ├── io │ ├── coded_stream.cc │ ├── coded_stream.h │ ├── coded_stream_inl.h │ ├── coded_stream_unittest.cc │ ├── gzip_stream.cc │ ├── gzip_stream.h │ ├── gzip_stream_unittest.sh │ ├── package_info.h │ ├── printer.cc │ ├── printer.h │ ├── printer_unittest.cc │ ├── tokenizer.cc │ ├── tokenizer.h │ ├── tokenizer_unittest.cc │ ├── zero_copy_stream.cc │ ├── zero_copy_stream.h │ ├── zero_copy_stream_impl.cc │ ├── zero_copy_stream_impl.h │ ├── zero_copy_stream_impl_lite.cc │ ├── zero_copy_stream_impl_lite.h │ └── zero_copy_stream_unittest.cc │ ├── lite_unittest.cc │ ├── message.cc │ ├── message.h │ ├── message_lite.cc │ ├── message_lite.h │ ├── message_unittest.cc │ ├── package_info.h │ ├── reflection_ops.cc │ ├── reflection_ops.h │ ├── reflection_ops_unittest.cc │ ├── repeated_field.cc │ ├── repeated_field.h │ ├── repeated_field_reflection_unittest.cc │ ├── repeated_field_unittest.cc │ ├── service.cc │ ├── service.h │ ├── stubs │ ├── atomicops.h │ ├── atomicops_internals_arm_gcc.h │ ├── atomicops_internals_arm_qnx.h │ ├── atomicops_internals_atomicword_compat.h │ ├── atomicops_internals_macosx.h │ ├── atomicops_internals_mips_gcc.h │ ├── atomicops_internals_pnacl.h │ ├── atomicops_internals_x86_gcc.cc │ ├── atomicops_internals_x86_gcc.h │ ├── atomicops_internals_x86_msvc.cc │ ├── atomicops_internals_x86_msvc.h │ ├── common.cc │ ├── common.h │ ├── common_unittest.cc │ ├── hash.h │ ├── map-util.h │ ├── once.cc │ ├── once.h │ ├── once_unittest.cc │ ├── platform_macros.h │ ├── stl_util.h │ ├── stringprintf.cc │ ├── stringprintf.h │ ├── stringprintf_unittest.cc │ ├── structurally_valid.cc │ ├── structurally_valid_unittest.cc │ ├── strutil.cc │ ├── strutil.h │ ├── strutil_unittest.cc │ ├── substitute.cc │ ├── substitute.h │ ├── template_util.h │ ├── template_util_unittest.cc │ ├── type_traits.h │ └── type_traits_unittest.cc │ ├── test_util.cc │ ├── test_util.h │ ├── test_util_lite.cc │ ├── test_util_lite.h │ ├── testdata │ ├── golden_message │ ├── golden_packed_fields_message │ ├── text_format_unittest_data.txt │ └── text_format_unittest_extensions_data.txt │ ├── testing │ ├── file.cc │ ├── file.h │ ├── googletest.cc │ ├── googletest.h │ ├── zcgunzip.cc │ └── zcgzip.cc │ ├── text_format.cc │ ├── text_format.h │ ├── text_format_unittest.cc │ ├── unittest.proto │ ├── unittest_custom_options.proto │ ├── unittest_embed_optimize_for.proto │ ├── unittest_empty.proto │ ├── unittest_enormous_descriptor.proto │ ├── unittest_import.proto │ ├── unittest_import_lite.proto │ ├── unittest_import_public.proto │ ├── unittest_import_public_lite.proto │ ├── unittest_lite.proto │ ├── unittest_lite_imports_nonlite.proto │ ├── unittest_mset.proto │ ├── unittest_no_generic_services.proto │ ├── unittest_optimize_for.proto │ ├── unknown_field_set.cc │ ├── unknown_field_set.h │ ├── unknown_field_set_unittest.cc │ ├── wire_format.cc │ ├── wire_format.h │ ├── wire_format_lite.cc │ ├── wire_format_lite.h │ ├── wire_format_lite_inl.h │ └── wire_format_unittest.cc ├── imgui ├── LICENSE ├── LICENSE.txt ├── README.md ├── examples │ ├── README.txt │ ├── directx9_example │ │ ├── Color.cpp │ │ ├── Color.h │ │ ├── Settings.h │ │ ├── XorStr.hpp │ │ ├── build_win32.bat │ │ ├── directx9_example.vcxproj │ │ ├── directx9_example.vcxproj.filters │ │ ├── imgui.ini │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── main.cpp │ │ └── read.txt │ ├── imgui_examples.sln │ ├── imgui_examples_msvc2010.sln │ ├── imgui_impl_allegro5.cpp │ ├── imgui_impl_allegro5.h │ ├── imgui_impl_dx10.cpp │ ├── imgui_impl_dx10.h │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_dx12.cpp │ ├── imgui_impl_dx12.h │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_freeglut.cpp │ ├── imgui_impl_freeglut.h │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_marmalade.cpp │ ├── imgui_impl_marmalade.h │ ├── imgui_impl_metal.h │ ├── imgui_impl_metal.mm │ ├── imgui_impl_opengl2.cpp │ ├── imgui_impl_opengl2.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_osx.h │ ├── imgui_impl_osx.mm │ ├── imgui_impl_sdl.cpp │ ├── imgui_impl_sdl.h │ ├── imgui_impl_vulkan.cpp │ ├── imgui_impl_vulkan.h │ ├── imgui_impl_win32.cpp │ └── imgui_impl_win32.h ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imguiCustom.cpp ├── imguiCustom.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_sdl.cpp ├── imgui_impl_sdl.h ├── imgui_internal.h ├── imstb_rectpack.h ├── imstb_textedit.h ├── imstb_truetype.h ├── stb_rect_pack.h ├── stb_textedit.h └── stb_truetype.h ├── json.cpp ├── json.h ├── modsupport.cpp ├── modsupport.h ├── protobuf ├── Messages.h ├── ProtoField.h ├── ProtoWriter.h ├── ProtobufReader.h ├── Protobuffs.cpp ├── Protobuffs.h ├── SteamClient.h ├── SteamID.h ├── base_gcmessages.pb.cc ├── base_gcmessages.pb.h ├── cstrike15_gcmessages.pb.cc ├── cstrike15_gcmessages.pb.h ├── econ_gcmessages.pb.cc ├── econ_gcmessages.pb.h ├── engine_gcmessages.pb.cc ├── engine_gcmessages.pb.h ├── fatdemo.pb.cc ├── fatdemo.pb.h ├── gcsdk_gcmessages.pb.cc ├── gcsdk_gcmessages.pb.h ├── gcsystemmsgs.pb.cc ├── gcsystemmsgs.pb.h ├── libprotobuf.lib ├── libprotoc.lib ├── netmessages.pb.cc ├── netmessages.pb.h ├── network_connection.pb.cc ├── network_connection.pb.h ├── steamdatagram_messages.pb.cc ├── steamdatagram_messages.pb.h ├── steammessages.pb.cc └── steammessages.pb.h ├── skinparser.cpp ├── skinparser.h ├── stickers.cpp ├── stickers.h ├── xhook.h ├── xhook.vcxproj ├── xhook.vcxproj.filters └── xhook.vcxproj.user /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/.gitignore -------------------------------------------------------------------------------- /CDrive/Configs/GrenadeHelper/de_cache/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/GrenadeHelper/de_cache/config.json -------------------------------------------------------------------------------- /CDrive/Configs/GrenadeHelper/de_cbble/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/GrenadeHelper/de_cbble/config.json -------------------------------------------------------------------------------- /CDrive/Configs/GrenadeHelper/de_dust2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/GrenadeHelper/de_dust2/config.json -------------------------------------------------------------------------------- /CDrive/Configs/GrenadeHelper/de_mirage/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/GrenadeHelper/de_mirage/config.json -------------------------------------------------------------------------------- /CDrive/Configs/GrenadeHelper/de_overpass/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/GrenadeHelper/de_overpass/config.json -------------------------------------------------------------------------------- /CDrive/Configs/WalkBot/cs_office/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/WalkBot/cs_office/Config.json -------------------------------------------------------------------------------- /CDrive/Configs/WalkBot/de_cbble/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/WalkBot/de_cbble/Config.json -------------------------------------------------------------------------------- /CDrive/Configs/WalkBot/de_dust2/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/WalkBot/de_dust2/Config.json -------------------------------------------------------------------------------- /CDrive/Configs/WalkBot/de_mirage/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/WalkBot/de_mirage/Config.json -------------------------------------------------------------------------------- /CDrive/Configs/WalkBot/de_overpas/Config.json: -------------------------------------------------------------------------------- 1 | [0] 2 | x=-1927.428955 3 | y=752.031250 4 | z=189.430908 5 | -------------------------------------------------------------------------------- /CDrive/Configs/currentlegit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Configs/currentlegit.ini -------------------------------------------------------------------------------- /CDrive/Hitsounds/ComboWhore.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/ComboWhore.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Dominating.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Dominating.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Doubekill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Doubekill.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Firstblood.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Firstblood.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Godlike.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Godlike.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Killingspree.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Killingspree.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/MegaKill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/MegaKill.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Monsterkill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Monsterkill.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Ownage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Ownage.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Perfect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Perfect.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Rampage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Rampage.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/RoundEnd.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/RoundEnd.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Triplekill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Triplekill.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/Ultrakill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/Ultrakill.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/WickedSick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/WickedSick.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/holyshit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/holyshit.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/ludicrouskill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/ludicrouskill.wav -------------------------------------------------------------------------------- /CDrive/Hitsounds/unstoppable.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/Hitsounds/unstoppable.wav -------------------------------------------------------------------------------- /CDrive/OLD Faceit Bypass W7/X-IT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/CDrive/OLD Faceit Bypass W7/X-IT.exe -------------------------------------------------------------------------------- /Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Config.cpp -------------------------------------------------------------------------------- /Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Config.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D2D1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D2D1.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D2D1Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D2D1Helper.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D2DBaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D2DBaseTypes.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D2Derr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D2Derr.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3D10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3D10.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3D10_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3D10_1.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3D10_1shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3D10_1shader.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3D10effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3D10effect.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3D10shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3D10shader.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3D11.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3D11SDKLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3D11SDKLayers.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3D11Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3D11Shader.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DCSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DCSX.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX10.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX10core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX10core.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX10math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX10math.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX10math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX10math.inl -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX10mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX10mesh.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX10tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX10tex.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX11.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX11async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX11async.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX11core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX11core.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX11tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX11tex.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3DX_DXGIFormatConvert.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3DX_DXGIFormatConvert.inl -------------------------------------------------------------------------------- /DX9 SDK/Include/D3Dcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3Dcommon.h -------------------------------------------------------------------------------- /DX9 SDK/Include/D3Dcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/D3Dcompiler.h -------------------------------------------------------------------------------- /DX9 SDK/Include/DWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/DWrite.h -------------------------------------------------------------------------------- /DX9 SDK/Include/DXGI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/DXGI.h -------------------------------------------------------------------------------- /DX9 SDK/Include/DXGIFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/DXGIFormat.h -------------------------------------------------------------------------------- /DX9 SDK/Include/DXGIType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/DXGIType.h -------------------------------------------------------------------------------- /DX9 SDK/Include/Dcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/Dcommon.h -------------------------------------------------------------------------------- /DX9 SDK/Include/DxErr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/DxErr.h -------------------------------------------------------------------------------- /DX9 SDK/Include/PIXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/PIXPlugin.h -------------------------------------------------------------------------------- /DX9 SDK/Include/X3DAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/X3DAudio.h -------------------------------------------------------------------------------- /DX9 SDK/Include/XAPO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/XAPO.h -------------------------------------------------------------------------------- /DX9 SDK/Include/XAPOBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/XAPOBase.h -------------------------------------------------------------------------------- /DX9 SDK/Include/XAPOFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/XAPOFX.h -------------------------------------------------------------------------------- /DX9 SDK/Include/XAudio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/XAudio2.h -------------------------------------------------------------------------------- /DX9 SDK/Include/XAudio2fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/XAudio2fx.h -------------------------------------------------------------------------------- /DX9 SDK/Include/XDSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/XDSP.h -------------------------------------------------------------------------------- /DX9 SDK/Include/XInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/XInput.h -------------------------------------------------------------------------------- /DX9 SDK/Include/audiodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/audiodefs.h -------------------------------------------------------------------------------- /DX9 SDK/Include/comdecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/comdecl.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3d10misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3d10misc.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3d10sdklayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3d10sdklayers.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3d9.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3d9caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3d9caps.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3d9types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3d9types.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx10async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx10async.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9anim.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9core.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9effect.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9math.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9math.inl -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9mesh.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9shader.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9shape.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9tex.h -------------------------------------------------------------------------------- /DX9 SDK/Include/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/d3dx9xof.h -------------------------------------------------------------------------------- /DX9 SDK/Include/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/dinput.h -------------------------------------------------------------------------------- /DX9 SDK/Include/dinputd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/dinputd.h -------------------------------------------------------------------------------- /DX9 SDK/Include/dsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/dsconf.h -------------------------------------------------------------------------------- /DX9 SDK/Include/dsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/dsetup.h -------------------------------------------------------------------------------- /DX9 SDK/Include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/dsound.h -------------------------------------------------------------------------------- /DX9 SDK/Include/dxdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/dxdiag.h -------------------------------------------------------------------------------- /DX9 SDK/Include/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/dxfile.h -------------------------------------------------------------------------------- /DX9 SDK/Include/dxsdkver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/dxsdkver.h -------------------------------------------------------------------------------- /DX9 SDK/Include/gameux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/gameux.h -------------------------------------------------------------------------------- /DX9 SDK/Include/rmxfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/rmxfguid.h -------------------------------------------------------------------------------- /DX9 SDK/Include/rmxftmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/rmxftmpl.h -------------------------------------------------------------------------------- /DX9 SDK/Include/rpcsal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/rpcsal.h -------------------------------------------------------------------------------- /DX9 SDK/Include/xact3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xact3.h -------------------------------------------------------------------------------- /DX9 SDK/Include/xact3d3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xact3d3.h -------------------------------------------------------------------------------- /DX9 SDK/Include/xact3wb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xact3wb.h -------------------------------------------------------------------------------- /DX9 SDK/Include/xma2defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xma2defs.h -------------------------------------------------------------------------------- /DX9 SDK/Include/xnamath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xnamath.h -------------------------------------------------------------------------------- /DX9 SDK/Include/xnamathconvert.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xnamathconvert.inl -------------------------------------------------------------------------------- /DX9 SDK/Include/xnamathmatrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xnamathmatrix.inl -------------------------------------------------------------------------------- /DX9 SDK/Include/xnamathmisc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xnamathmisc.inl -------------------------------------------------------------------------------- /DX9 SDK/Include/xnamathvector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Include/xnamathvector.inl -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/D3DCSX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/D3DCSX.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/D3DCSXd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/D3DCSXd.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/DxErr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/DxErr.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/X3DAudio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/X3DAudio.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/XAPOFX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/XAPOFX.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/XInput.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/XInput.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d2d1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d2d1.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3d10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3d10.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3d10_1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3d10_1.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3d11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3d11.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3d9.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3dcompiler.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3dcompiler.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3dx10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3dx10.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3dx10d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3dx10d.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3dx11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3dx11.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3dx11d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3dx11d.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3dx9.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3dx9d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3dx9d.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/d3dxof.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/d3dxof.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/dinput8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/dinput8.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/dsetup.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/dsetup.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/dsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/dsound.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/dwrite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/dwrite.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/dxgi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/dxgi.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/dxguid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/dxguid.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/xapobase.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/xapobase.lib -------------------------------------------------------------------------------- /DX9 SDK/Lib/x86/xapobased.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DX9 SDK/Lib/x86/xapobased.lib -------------------------------------------------------------------------------- /DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DllMain.cpp -------------------------------------------------------------------------------- /DllMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/DllMain.h -------------------------------------------------------------------------------- /Features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Features.h -------------------------------------------------------------------------------- /GUI/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Menu.cpp -------------------------------------------------------------------------------- /GUI/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Menu.h -------------------------------------------------------------------------------- /GUI/Tabs/AimTabs/AimBotTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/AimTabs/AimBotTab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/AimTabs/AimBotTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/AimTabs/AimBotTab.h -------------------------------------------------------------------------------- /GUI/Tabs/AimTabs/TriggerBotTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/AimTabs/TriggerBotTab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/AimTabs/TriggerBotTab.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Triggerbot 4 | { 5 | void RenderTab(); 6 | } -------------------------------------------------------------------------------- /GUI/Tabs/HvHTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/HvHTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTab.h -------------------------------------------------------------------------------- /GUI/Tabs/HvHTabs/MiscHvHTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTabs/MiscHvHTab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/HvHTabs/MiscHvHTab.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace MiscHvHTab { 4 | 5 | void RenderTab(); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /GUI/Tabs/HvHTabs/airbornehvhtab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTabs/airbornehvhtab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/HvHTabs/airbornehvhtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTabs/airbornehvhtab.h -------------------------------------------------------------------------------- /GUI/Tabs/HvHTabs/movinghvhtab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTabs/movinghvhtab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/HvHTabs/movinghvhtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTabs/movinghvhtab.h -------------------------------------------------------------------------------- /GUI/Tabs/HvHTabs/standinghvhtab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTabs/standinghvhtab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/HvHTabs/standinghvhtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/HvHTabs/standinghvhtab.h -------------------------------------------------------------------------------- /GUI/Tabs/LobbyChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/LobbyChanger.cpp -------------------------------------------------------------------------------- /GUI/Tabs/LobbyChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/LobbyChanger.h -------------------------------------------------------------------------------- /GUI/Tabs/ModelsTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/ModelsTab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/ModelsTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/ModelsTab.h -------------------------------------------------------------------------------- /GUI/Tabs/SkinsTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/SkinsTab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/SkinsTab.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Skins 4 | { 5 | void RenderTab(); 6 | } -------------------------------------------------------------------------------- /GUI/Tabs/aimtab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/aimtab.cpp -------------------------------------------------------------------------------- /GUI/Tabs/aimtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Tabs/aimtab.h -------------------------------------------------------------------------------- /GUI/Windows/FPSWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/FPSWindow.cpp -------------------------------------------------------------------------------- /GUI/Windows/FPSWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/FPSWindow.h -------------------------------------------------------------------------------- /GUI/Windows/configs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/configs.cpp -------------------------------------------------------------------------------- /GUI/Windows/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/configs.h -------------------------------------------------------------------------------- /GUI/Windows/eventlogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/eventlogger.cpp -------------------------------------------------------------------------------- /GUI/Windows/eventlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/eventlogger.h -------------------------------------------------------------------------------- /GUI/Windows/resolverinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/resolverinfo.cpp -------------------------------------------------------------------------------- /GUI/Windows/resolverinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/resolverinfo.h -------------------------------------------------------------------------------- /GUI/Windows/skinmodelchanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/skinmodelchanger.cpp -------------------------------------------------------------------------------- /GUI/Windows/skinmodelchanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/GUI/Windows/skinmodelchanger.h -------------------------------------------------------------------------------- /Hacks/AimBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AimBot.cpp -------------------------------------------------------------------------------- /Hacks/AimBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AimBot.h -------------------------------------------------------------------------------- /Hacks/AirStuck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AirStuck.cpp -------------------------------------------------------------------------------- /Hacks/AirStuck.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Airstuck 4 | { 5 | void CreateMove(CUserCmd* cmd); 6 | } -------------------------------------------------------------------------------- /Hacks/AntiAim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AntiAim.cpp -------------------------------------------------------------------------------- /Hacks/AntiAim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AntiAim.h -------------------------------------------------------------------------------- /Hacks/AsusWalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AsusWalls.cpp -------------------------------------------------------------------------------- /Hacks/AsusWalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AsusWalls.h -------------------------------------------------------------------------------- /Hacks/AutoAccept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AutoAccept.cpp -------------------------------------------------------------------------------- /Hacks/AutoAccept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AutoAccept.h -------------------------------------------------------------------------------- /Hacks/AutoBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AutoBlock.cpp -------------------------------------------------------------------------------- /Hacks/AutoBlock.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Autoblock 4 | { 5 | void CreateMove(CUserCmd* cmd); 6 | } -------------------------------------------------------------------------------- /Hacks/AutoDefuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AutoDefuse.cpp -------------------------------------------------------------------------------- /Hacks/AutoDefuse.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace AutoDefuse 4 | { 5 | void CreateMove(CUserCmd* cmd); 6 | }; -------------------------------------------------------------------------------- /Hacks/AutoStrafe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AutoStrafe.cpp -------------------------------------------------------------------------------- /Hacks/AutoStrafe.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace AutoStrafe 4 | { 5 | void CreateMove(CUserCmd* cmd); 6 | } -------------------------------------------------------------------------------- /Hacks/AutoWall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AutoWall.cpp -------------------------------------------------------------------------------- /Hacks/AutoWall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/AutoWall.h -------------------------------------------------------------------------------- /Hacks/BunnyHop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/BunnyHop.cpp -------------------------------------------------------------------------------- /Hacks/BunnyHop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/BunnyHop.h -------------------------------------------------------------------------------- /Hacks/Chams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Chams.cpp -------------------------------------------------------------------------------- /Hacks/Chams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Chams.h -------------------------------------------------------------------------------- /Hacks/ClanTagChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ClanTagChanger.cpp -------------------------------------------------------------------------------- /Hacks/ClanTagChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ClanTagChanger.h -------------------------------------------------------------------------------- /Hacks/CustomGlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/CustomGlow.cpp -------------------------------------------------------------------------------- /Hacks/CustomGlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/CustomGlow.h -------------------------------------------------------------------------------- /Hacks/DLights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/DLights.cpp -------------------------------------------------------------------------------- /Hacks/DLights.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Dlights 4 | { 5 | void Paint(); 6 | } -------------------------------------------------------------------------------- /Hacks/ESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ESP.cpp -------------------------------------------------------------------------------- /Hacks/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ESP.h -------------------------------------------------------------------------------- /Hacks/EdgeJump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/EdgeJump.cpp -------------------------------------------------------------------------------- /Hacks/EdgeJump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/EdgeJump.h -------------------------------------------------------------------------------- /Hacks/FOVChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/FOVChanger.cpp -------------------------------------------------------------------------------- /Hacks/FOVChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/FOVChanger.h -------------------------------------------------------------------------------- /Hacks/FakeLag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/FakeLag.cpp -------------------------------------------------------------------------------- /Hacks/FakeLag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/FakeLag.h -------------------------------------------------------------------------------- /Hacks/FakeWalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/FakeWalk.cpp -------------------------------------------------------------------------------- /Hacks/FakeWalk.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Fakewalk { 4 | void CreateMove(CUserCmd* cmd); 5 | } 6 | -------------------------------------------------------------------------------- /Hacks/GrenadeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/GrenadeHelper.cpp -------------------------------------------------------------------------------- /Hacks/GrenadeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/GrenadeHelper.h -------------------------------------------------------------------------------- /Hacks/HitMarkers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/HitMarkers.cpp -------------------------------------------------------------------------------- /Hacks/HitMarkers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/HitMarkers.h -------------------------------------------------------------------------------- /Hacks/JumpThrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/JumpThrow.cpp -------------------------------------------------------------------------------- /Hacks/JumpThrow.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace JumpThrow 4 | { 5 | void CreateMove(CUserCmd* cmd); 6 | } -------------------------------------------------------------------------------- /Hacks/LagComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/LagComp.cpp -------------------------------------------------------------------------------- /Hacks/LagComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/LagComp.h -------------------------------------------------------------------------------- /Hacks/LobbyMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/LobbyMod.cpp -------------------------------------------------------------------------------- /Hacks/LobbyMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/LobbyMod.h -------------------------------------------------------------------------------- /Hacks/NameChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NameChanger.cpp -------------------------------------------------------------------------------- /Hacks/NameChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NameChanger.h -------------------------------------------------------------------------------- /Hacks/NameStealer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NameStealer.cpp -------------------------------------------------------------------------------- /Hacks/NameStealer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NameStealer.h -------------------------------------------------------------------------------- /Hacks/NoFlash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NoFlash.cpp -------------------------------------------------------------------------------- /Hacks/NoFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NoFlash.h -------------------------------------------------------------------------------- /Hacks/NoSky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NoSky.cpp -------------------------------------------------------------------------------- /Hacks/NoSky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NoSky.h -------------------------------------------------------------------------------- /Hacks/NoSmoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NoSmoke.cpp -------------------------------------------------------------------------------- /Hacks/NoSmoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/NoSmoke.h -------------------------------------------------------------------------------- /Hacks/Noduckcooldown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Noduckcooldown.cpp -------------------------------------------------------------------------------- /Hacks/Noduckcooldown.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace NoDuckCooldown 4 | { 5 | //Hooks 6 | void CreateMove(CUserCmd* cmd); 7 | } -------------------------------------------------------------------------------- /Hacks/PredictionSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/PredictionSystem.cpp -------------------------------------------------------------------------------- /Hacks/PredictionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/PredictionSystem.h -------------------------------------------------------------------------------- /Hacks/Radar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Radar.cpp -------------------------------------------------------------------------------- /Hacks/Radar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Radar.h -------------------------------------------------------------------------------- /Hacks/RecoilCrosshair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/RecoilCrosshair.cpp -------------------------------------------------------------------------------- /Hacks/RecoilCrosshair.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Recoilcrosshair 4 | { 5 | void Paint(); 6 | }; -------------------------------------------------------------------------------- /Hacks/ReportBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ReportBot.cpp -------------------------------------------------------------------------------- /Hacks/ReportBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ReportBot.h -------------------------------------------------------------------------------- /Hacks/Resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Resolver.cpp -------------------------------------------------------------------------------- /Hacks/Resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Resolver.h -------------------------------------------------------------------------------- /Hacks/ShowRanks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ShowRanks.cpp -------------------------------------------------------------------------------- /Hacks/ShowRanks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ShowRanks.h -------------------------------------------------------------------------------- /Hacks/ShowSpectators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ShowSpectators.cpp -------------------------------------------------------------------------------- /Hacks/ShowSpectators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ShowSpectators.h -------------------------------------------------------------------------------- /Hacks/SniperCrosshair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/SniperCrosshair.cpp -------------------------------------------------------------------------------- /Hacks/SniperCrosshair.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace SniperCrosshair { 4 | 5 | // Hooks 6 | void Paint(); 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Hacks/Spammer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Spammer.cpp -------------------------------------------------------------------------------- /Hacks/Spammer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Spammer.h -------------------------------------------------------------------------------- /Hacks/ThirdPerson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ThirdPerson.cpp -------------------------------------------------------------------------------- /Hacks/ThirdPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/ThirdPerson.h -------------------------------------------------------------------------------- /Hacks/Tickbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Tickbase.cpp -------------------------------------------------------------------------------- /Hacks/Tickbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Tickbase.h -------------------------------------------------------------------------------- /Hacks/Tracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Tracer.cpp -------------------------------------------------------------------------------- /Hacks/Tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/Tracer.h -------------------------------------------------------------------------------- /Hacks/TriggerBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/TriggerBot.cpp -------------------------------------------------------------------------------- /Hacks/TriggerBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/TriggerBot.h -------------------------------------------------------------------------------- /Hacks/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/View.cpp -------------------------------------------------------------------------------- /Hacks/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/View.h -------------------------------------------------------------------------------- /Hacks/WalkBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/WalkBot.cpp -------------------------------------------------------------------------------- /Hacks/WalkBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/WalkBot.h -------------------------------------------------------------------------------- /Hacks/angleindicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/angleindicator.cpp -------------------------------------------------------------------------------- /Hacks/angleindicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/angleindicator.h -------------------------------------------------------------------------------- /Hacks/autoknife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/autoknife.cpp -------------------------------------------------------------------------------- /Hacks/autoknife.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/autoknife.h -------------------------------------------------------------------------------- /Hacks/disablepostprocessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/disablepostprocessing.cpp -------------------------------------------------------------------------------- /Hacks/disablepostprocessing.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace DisablePostProcessing 4 | { 5 | void BeginFrame(); 6 | } -------------------------------------------------------------------------------- /Hacks/grenadeprediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/grenadeprediction.cpp -------------------------------------------------------------------------------- /Hacks/grenadeprediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/grenadeprediction.h -------------------------------------------------------------------------------- /Hacks/lbyindicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/lbyindicator.cpp -------------------------------------------------------------------------------- /Hacks/lbyindicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/lbyindicator.h -------------------------------------------------------------------------------- /Hacks/moonwalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/moonwalk.cpp -------------------------------------------------------------------------------- /Hacks/moonwalk.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace MoonWalk 4 | { 5 | void CreateMove(CUserCmd* cmd); 6 | } -------------------------------------------------------------------------------- /Hacks/nofog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/nofog.cpp -------------------------------------------------------------------------------- /Hacks/nofog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/nofog.h -------------------------------------------------------------------------------- /Hacks/speedindicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/speedindicator.cpp -------------------------------------------------------------------------------- /Hacks/speedindicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/speedindicator.h -------------------------------------------------------------------------------- /Hacks/valvedscheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/valvedscheck.cpp -------------------------------------------------------------------------------- /Hacks/valvedscheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hacks/valvedscheck.h -------------------------------------------------------------------------------- /Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hooks.cpp -------------------------------------------------------------------------------- /Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Hooks.h -------------------------------------------------------------------------------- /Image/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Image/bg.png -------------------------------------------------------------------------------- /Interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Interfaces.cpp -------------------------------------------------------------------------------- /Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Interfaces.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/LICENSE -------------------------------------------------------------------------------- /ProfileChanger/MemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProfileChanger/MemAlloc.h -------------------------------------------------------------------------------- /ProfileChanger/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProfileChanger/Messages.h -------------------------------------------------------------------------------- /ProfileChanger/Utils_fox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProfileChanger/Utils_fox.cpp -------------------------------------------------------------------------------- /ProfileChanger/Utils_fox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProfileChanger/Utils_fox.h -------------------------------------------------------------------------------- /ProfileChanger/valve_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProfileChanger/valve_parser.cpp -------------------------------------------------------------------------------- /ProfileChanger/valve_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProfileChanger/valve_parser.h -------------------------------------------------------------------------------- /ProtoUtils/ProtoField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProtoUtils/ProtoField.h -------------------------------------------------------------------------------- /ProtoUtils/ProtoWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProtoUtils/ProtoWriter.h -------------------------------------------------------------------------------- /ProtoUtils/ProtobufReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProtoUtils/ProtobufReader.h -------------------------------------------------------------------------------- /ProtoUtils/Protobuffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProtoUtils/Protobuffs.cpp -------------------------------------------------------------------------------- /ProtoUtils/Protobuffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/ProtoUtils/Protobuffs.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/README.md -------------------------------------------------------------------------------- /Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Renderer.cpp -------------------------------------------------------------------------------- /Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Renderer.h -------------------------------------------------------------------------------- /SDK/CBaseClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/CBaseClientState.h -------------------------------------------------------------------------------- /SDK/CClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/CClientState.h -------------------------------------------------------------------------------- /SDK/CEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/CEffects.h -------------------------------------------------------------------------------- /SDK/CGlobalVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/CGlobalVars.cpp -------------------------------------------------------------------------------- /SDK/CGlobalVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/CGlobalVars.h -------------------------------------------------------------------------------- /SDK/CNetworkStringTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/CNetworkStringTable.h -------------------------------------------------------------------------------- /SDK/CPlayerResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/CPlayerResource.h -------------------------------------------------------------------------------- /SDK/CView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/CView.h -------------------------------------------------------------------------------- /SDK/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Color.cpp -------------------------------------------------------------------------------- /SDK/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Color.h -------------------------------------------------------------------------------- /SDK/Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Definitions.h -------------------------------------------------------------------------------- /SDK/FnvHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/FnvHash.hpp -------------------------------------------------------------------------------- /SDK/GLOBALSHHH.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/GLOBALSHHH.H -------------------------------------------------------------------------------- /SDK/Globalshhh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Globalshhh.cpp -------------------------------------------------------------------------------- /SDK/Globalshhh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Globalshhh.h -------------------------------------------------------------------------------- /SDK/GlowObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/GlowObject.h -------------------------------------------------------------------------------- /SDK/IAppSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IAppSystem.h -------------------------------------------------------------------------------- /SDK/IBaseClientDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IBaseClientDll.h -------------------------------------------------------------------------------- /SDK/IClientEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IClientEntity.h -------------------------------------------------------------------------------- /SDK/IClientEntityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IClientEntityList.h -------------------------------------------------------------------------------- /SDK/IClientMode.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | class IClientMode; -------------------------------------------------------------------------------- /SDK/ICommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/ICommandLine.h -------------------------------------------------------------------------------- /SDK/ICvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/ICvar.cpp -------------------------------------------------------------------------------- /SDK/ICvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/ICvar.h -------------------------------------------------------------------------------- /SDK/IEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IEngineClient.h -------------------------------------------------------------------------------- /SDK/IEngineTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IEngineTrace.h -------------------------------------------------------------------------------- /SDK/IGameEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IGameEventManager.h -------------------------------------------------------------------------------- /SDK/IGameMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IGameMovement.h -------------------------------------------------------------------------------- /SDK/IInputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IInputSystem.cpp -------------------------------------------------------------------------------- /SDK/IInputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IInputSystem.h -------------------------------------------------------------------------------- /SDK/IMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IMaterial.h -------------------------------------------------------------------------------- /SDK/IMaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IMaterialSystem.h -------------------------------------------------------------------------------- /SDK/IPhysicalSurfaceProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IPhysicalSurfaceProps.h -------------------------------------------------------------------------------- /SDK/IPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IPrediction.h -------------------------------------------------------------------------------- /SDK/ISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/ISurface.h -------------------------------------------------------------------------------- /SDK/IVDebugOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IVDebugOverlay.h -------------------------------------------------------------------------------- /SDK/IVModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IVModelInfo.h -------------------------------------------------------------------------------- /SDK/IVModelRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IVModelRender.h -------------------------------------------------------------------------------- /SDK/IVPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/IVPanel.h -------------------------------------------------------------------------------- /SDK/Inconstructible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Inconstructible.h -------------------------------------------------------------------------------- /SDK/KeyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/KeyValues.h -------------------------------------------------------------------------------- /SDK/NetvarManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/NetvarManager.cpp -------------------------------------------------------------------------------- /SDK/NetvarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/NetvarManager.h -------------------------------------------------------------------------------- /SDK/Offsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Offsets.cpp -------------------------------------------------------------------------------- /SDK/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Offsets.h -------------------------------------------------------------------------------- /SDK/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/SDK.h -------------------------------------------------------------------------------- /SDK/SteamAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/SteamAPI.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamapplist.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamapps.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamappticket.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamclient.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamcontroller.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamfriends.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamgamecoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamgamecoordinator.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamgameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamgameserver.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamgameserverstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamgameserverstats.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamhtmlsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamhtmlsurface.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamhttp.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteaminventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteaminventory.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /SDK/Steamworks/isteammatchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteammatchmaking.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteammusic.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteammusicremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteammusicremote.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamnetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamnetworking.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamparentalsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamparentalsettings.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamps3overlayrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamps3overlayrenderer.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamremotestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamremotestorage.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamscreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamscreenshots.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamugc.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamuser.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamuserstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamuserstats.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamutils.h -------------------------------------------------------------------------------- /SDK/Steamworks/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/isteamvideo.h -------------------------------------------------------------------------------- /SDK/Steamworks/matchmakingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/matchmakingtypes.h -------------------------------------------------------------------------------- /SDK/Steamworks/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steam_api.h -------------------------------------------------------------------------------- /SDK/Steamworks/steam_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steam_api.json -------------------------------------------------------------------------------- /SDK/Steamworks/steam_api_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steam_api_flat.h -------------------------------------------------------------------------------- /SDK/Steamworks/steam_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steam_api_internal.h -------------------------------------------------------------------------------- /SDK/Steamworks/steam_api_interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steam_api_interop.cs -------------------------------------------------------------------------------- /SDK/Steamworks/steam_gameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steam_gameserver.h -------------------------------------------------------------------------------- /SDK/Steamworks/steamclientpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steamclientpublic.h -------------------------------------------------------------------------------- /SDK/Steamworks/steamencryptedappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steamencryptedappticket.h -------------------------------------------------------------------------------- /SDK/Steamworks/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steamhttpenums.h -------------------------------------------------------------------------------- /SDK/Steamworks/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steamps3params.h -------------------------------------------------------------------------------- /SDK/Steamworks/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steamtypes.h -------------------------------------------------------------------------------- /SDK/Steamworks/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Steamworks/steamuniverse.h -------------------------------------------------------------------------------- /SDK/VMTHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/VMTHook.h -------------------------------------------------------------------------------- /SDK/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/Vector.h -------------------------------------------------------------------------------- /SDK/VirtualMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/VirtualMethod.h -------------------------------------------------------------------------------- /SDK/WeaponSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/WeaponSystem.h -------------------------------------------------------------------------------- /SDK/getvfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/getvfunc.h -------------------------------------------------------------------------------- /SDK/iLocalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/iLocalize.h -------------------------------------------------------------------------------- /SDK/key_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/key_values.cpp -------------------------------------------------------------------------------- /SDK/key_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/key_values.h -------------------------------------------------------------------------------- /SDK/materialconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/materialconfig.cpp -------------------------------------------------------------------------------- /SDK/materialconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/materialconfig.h -------------------------------------------------------------------------------- /SDK/materialsystem_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/materialsystem_config.h -------------------------------------------------------------------------------- /SDK/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SDK/pad.h -------------------------------------------------------------------------------- /Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Settings.cpp -------------------------------------------------------------------------------- /Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Settings.h -------------------------------------------------------------------------------- /Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Shared.h -------------------------------------------------------------------------------- /Shortcuts2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Shortcuts2.cpp -------------------------------------------------------------------------------- /Shortcuts2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Shortcuts2.h -------------------------------------------------------------------------------- /SkinChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SkinChanger.cpp -------------------------------------------------------------------------------- /SkinChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/SkinChanger.h -------------------------------------------------------------------------------- /Utils/Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Draw.cpp -------------------------------------------------------------------------------- /Utils/Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Draw.h -------------------------------------------------------------------------------- /Utils/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Entity.cpp -------------------------------------------------------------------------------- /Utils/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Entity.h -------------------------------------------------------------------------------- /Utils/FindPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/FindPattern.cpp -------------------------------------------------------------------------------- /Utils/FindPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/FindPattern.h -------------------------------------------------------------------------------- /Utils/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Math.cpp -------------------------------------------------------------------------------- /Utils/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Math.h -------------------------------------------------------------------------------- /Utils/Singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Singleton.hpp -------------------------------------------------------------------------------- /Utils/Skins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Skins.cpp -------------------------------------------------------------------------------- /Utils/Skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Skins.h -------------------------------------------------------------------------------- /Utils/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Util.cpp -------------------------------------------------------------------------------- /Utils/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Util.h -------------------------------------------------------------------------------- /Utils/Util_Items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Util_Items.cpp -------------------------------------------------------------------------------- /Utils/Util_Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Util_Items.h -------------------------------------------------------------------------------- /Utils/Util_SDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Util_SDK.cpp -------------------------------------------------------------------------------- /Utils/Util_SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/Util_SDK.h -------------------------------------------------------------------------------- /Utils/XorStr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/XorStr.hpp -------------------------------------------------------------------------------- /Utils/memmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/memmem.h -------------------------------------------------------------------------------- /Utils/pstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/pstring.h -------------------------------------------------------------------------------- /Utils/recvproxyhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/Utils/recvproxyhook.h -------------------------------------------------------------------------------- /XHOOK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/XHOOK.sln -------------------------------------------------------------------------------- /google/protobuf/compiler/code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/code_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/command_line_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/command_line_interface.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/command_line_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/command_line_interface.h -------------------------------------------------------------------------------- /google/protobuf/compiler/command_line_interface_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/command_line_interface_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_enum.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_enum.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_enum_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_enum_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_extension.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_extension.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_file.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_file.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_helpers.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_helpers.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_message.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_message.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_message_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_message_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_options.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_primitive_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_primitive_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_service.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_service.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_string_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_string_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/cpp/cpp_unittest.h -------------------------------------------------------------------------------- /google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/importer.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /google/protobuf/compiler/importer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/importer_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_doc_comment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_doc_comment.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_doc_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_doc_comment.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_doc_comment_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_doc_comment_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_enum.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_enum.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_enum_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_enum_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_extension.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_extension.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_file.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_file.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_helpers.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_helpers.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_message.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_message.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_message_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_message_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_plugin_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_primitive_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_primitive_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_service.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_service.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_string_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/java/java_string_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/main.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/mock_code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/mock_code_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/mock_code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/mock_code_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/package_info.h -------------------------------------------------------------------------------- /google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /google/protobuf/compiler/parser_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/parser_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/plugin.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/plugin.pb.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /google/protobuf/compiler/python/python_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/python/python_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/python/python_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/python/python_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/python/python_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/python/python_plugin_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/subprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/subprocess.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/subprocess.h -------------------------------------------------------------------------------- /google/protobuf/compiler/test_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/test_plugin.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/zip_output_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/zip_output_unittest.sh -------------------------------------------------------------------------------- /google/protobuf/compiler/zip_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/zip_writer.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/zip_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/compiler/zip_writer.h -------------------------------------------------------------------------------- /google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor_database.cc -------------------------------------------------------------------------------- /google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /google/protobuf/descriptor_database_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor_database_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/descriptor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/descriptor_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /google/protobuf/dynamic_message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/dynamic_message_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/extension_set_heavy.cc -------------------------------------------------------------------------------- /google/protobuf/extension_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/extension_set_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/generated_enum_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/generated_enum_reflection.h -------------------------------------------------------------------------------- /google/protobuf/generated_message_reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/generated_message_reflection.cc -------------------------------------------------------------------------------- /google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /google/protobuf/generated_message_reflection_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/generated_message_reflection_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/generated_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/generated_message_util.cc -------------------------------------------------------------------------------- /google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /google/protobuf/io/coded_stream_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/coded_stream_inl.h -------------------------------------------------------------------------------- /google/protobuf/io/coded_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/coded_stream_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /google/protobuf/io/gzip_stream_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/gzip_stream_unittest.sh -------------------------------------------------------------------------------- /google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/package_info.h -------------------------------------------------------------------------------- /google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /google/protobuf/io/printer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/printer_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /google/protobuf/io/tokenizer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/tokenizer_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/zero_copy_stream.cc -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/zero_copy_stream_impl.cc -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_impl_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/zero_copy_stream_impl_lite.cc -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/io/zero_copy_stream_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/lite_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/message.cc -------------------------------------------------------------------------------- /google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/message.h -------------------------------------------------------------------------------- /google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /google/protobuf/message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/message_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/package_info.h -------------------------------------------------------------------------------- /google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /google/protobuf/reflection_ops_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/reflection_ops_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /google/protobuf/repeated_field_reflection_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/repeated_field_reflection_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/repeated_field_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/repeated_field_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/service.cc -------------------------------------------------------------------------------- /google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/service.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_arm_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_arm_gcc.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_arm_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_arm_qnx.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_atomicword_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_atomicword_compat.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_macosx.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_mips_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_mips_gcc.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_pnacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_pnacl.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_x86_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_x86_gcc.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_x86_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_x86_gcc.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_x86_msvc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_x86_msvc.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_x86_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/atomicops_internals_x86_msvc.h -------------------------------------------------------------------------------- /google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /google/protobuf/stubs/common_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/common_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /google/protobuf/stubs/map-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/map-util.h -------------------------------------------------------------------------------- /google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /google/protobuf/stubs/once_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/once_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/platform_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/platform_macros.h -------------------------------------------------------------------------------- /google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /google/protobuf/stubs/stringprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/stringprintf.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/stringprintf.h -------------------------------------------------------------------------------- /google/protobuf/stubs/stringprintf_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/stringprintf_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/structurally_valid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/structurally_valid.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/structurally_valid_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/structurally_valid_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /google/protobuf/stubs/strutil_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/strutil_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/substitute.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/template_util.h -------------------------------------------------------------------------------- /google/protobuf/stubs/template_util_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/template_util_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/type_traits.h -------------------------------------------------------------------------------- /google/protobuf/stubs/type_traits_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/stubs/type_traits_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/test_util.h -------------------------------------------------------------------------------- /google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/test_util_lite.cc -------------------------------------------------------------------------------- /google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/test_util_lite.h -------------------------------------------------------------------------------- /google/protobuf/testdata/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testdata/golden_message -------------------------------------------------------------------------------- /google/protobuf/testdata/golden_packed_fields_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testdata/golden_packed_fields_message -------------------------------------------------------------------------------- /google/protobuf/testdata/text_format_unittest_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testdata/text_format_unittest_data.txt -------------------------------------------------------------------------------- /google/protobuf/testdata/text_format_unittest_extensions_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testdata/text_format_unittest_extensions_data.txt -------------------------------------------------------------------------------- /google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /google/protobuf/testing/googletest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testing/googletest.cc -------------------------------------------------------------------------------- /google/protobuf/testing/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testing/googletest.h -------------------------------------------------------------------------------- /google/protobuf/testing/zcgunzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testing/zcgunzip.cc -------------------------------------------------------------------------------- /google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/testing/zcgzip.cc -------------------------------------------------------------------------------- /google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/text_format.h -------------------------------------------------------------------------------- /google/protobuf/text_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/text_format_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_custom_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_custom_options.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_embed_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_embed_optimize_for.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_enormous_descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_enormous_descriptor.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_import_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_import_lite.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_import_public.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_import_public.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_import_public_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_import_public_lite.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_lite_imports_nonlite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_lite_imports_nonlite.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_no_generic_services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_no_generic_services.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unittest_optimize_for.proto -------------------------------------------------------------------------------- /google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unknown_field_set.cc -------------------------------------------------------------------------------- /google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /google/protobuf/unknown_field_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/unknown_field_set_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/wire_format_lite.cc -------------------------------------------------------------------------------- /google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /google/protobuf/wire_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/google/protobuf/wire_format_unittest.cc -------------------------------------------------------------------------------- /imgui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/LICENSE -------------------------------------------------------------------------------- /imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/LICENSE.txt -------------------------------------------------------------------------------- /imgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/README.md -------------------------------------------------------------------------------- /imgui/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/README.txt -------------------------------------------------------------------------------- /imgui/examples/directx9_example/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/Color.cpp -------------------------------------------------------------------------------- /imgui/examples/directx9_example/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/Color.h -------------------------------------------------------------------------------- /imgui/examples/directx9_example/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/Settings.h -------------------------------------------------------------------------------- /imgui/examples/directx9_example/XorStr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/XorStr.hpp -------------------------------------------------------------------------------- /imgui/examples/directx9_example/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/build_win32.bat -------------------------------------------------------------------------------- /imgui/examples/directx9_example/directx9_example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/directx9_example.vcxproj -------------------------------------------------------------------------------- /imgui/examples/directx9_example/directx9_example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/directx9_example.vcxproj.filters -------------------------------------------------------------------------------- /imgui/examples/directx9_example/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/imgui.ini -------------------------------------------------------------------------------- /imgui/examples/directx9_example/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /imgui/examples/directx9_example/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/imgui_impl_dx9.h -------------------------------------------------------------------------------- /imgui/examples/directx9_example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/directx9_example/main.cpp -------------------------------------------------------------------------------- /imgui/examples/directx9_example/read.txt: -------------------------------------------------------------------------------- 1 | DX9_APP (imgui) 2 | 3 | Test Menu functions here for easy debuggings... -------------------------------------------------------------------------------- /imgui/examples/imgui_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_examples.sln -------------------------------------------------------------------------------- /imgui/examples/imgui_examples_msvc2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_examples_msvc2010.sln -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_dx10.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_dx11.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_dx12.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_dx9.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_freeglut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_freeglut.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_freeglut.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_glfw.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_marmalade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_marmalade.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_marmalade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_marmalade.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_metal.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_metal.mm -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_osx.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_osx.mm -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_sdl.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /imgui/examples/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/examples/imgui_impl_win32.h -------------------------------------------------------------------------------- /imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imconfig.h -------------------------------------------------------------------------------- /imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imgui.cpp -------------------------------------------------------------------------------- /imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imgui.h -------------------------------------------------------------------------------- /imgui/imguiCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imguiCustom.cpp -------------------------------------------------------------------------------- /imgui/imguiCustom.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "imgui.h" 4 | 5 | namespace ImGuiCustom 6 | { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imgui_impl_sdl.h -------------------------------------------------------------------------------- /imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imgui_internal.h -------------------------------------------------------------------------------- /imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /imgui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/stb_rect_pack.h -------------------------------------------------------------------------------- /imgui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/stb_textedit.h -------------------------------------------------------------------------------- /imgui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/imgui/stb_truetype.h -------------------------------------------------------------------------------- /json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/json.cpp -------------------------------------------------------------------------------- /json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/json.h -------------------------------------------------------------------------------- /modsupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/modsupport.cpp -------------------------------------------------------------------------------- /modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/modsupport.h -------------------------------------------------------------------------------- /protobuf/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/Messages.h -------------------------------------------------------------------------------- /protobuf/ProtoField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/ProtoField.h -------------------------------------------------------------------------------- /protobuf/ProtoWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/ProtoWriter.h -------------------------------------------------------------------------------- /protobuf/ProtobufReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/ProtobufReader.h -------------------------------------------------------------------------------- /protobuf/Protobuffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/Protobuffs.cpp -------------------------------------------------------------------------------- /protobuf/Protobuffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/Protobuffs.h -------------------------------------------------------------------------------- /protobuf/SteamClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/SteamClient.h -------------------------------------------------------------------------------- /protobuf/SteamID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/SteamID.h -------------------------------------------------------------------------------- /protobuf/base_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/base_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/base_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/base_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/cstrike15_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/cstrike15_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/cstrike15_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/cstrike15_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/econ_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/econ_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/econ_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/econ_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/engine_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/engine_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/engine_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/engine_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/fatdemo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/fatdemo.pb.cc -------------------------------------------------------------------------------- /protobuf/fatdemo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/fatdemo.pb.h -------------------------------------------------------------------------------- /protobuf/gcsdk_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/gcsdk_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/gcsdk_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/gcsdk_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/gcsystemmsgs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/gcsystemmsgs.pb.cc -------------------------------------------------------------------------------- /protobuf/gcsystemmsgs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/gcsystemmsgs.pb.h -------------------------------------------------------------------------------- /protobuf/libprotobuf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/libprotobuf.lib -------------------------------------------------------------------------------- /protobuf/libprotoc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/libprotoc.lib -------------------------------------------------------------------------------- /protobuf/netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/netmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/netmessages.pb.h -------------------------------------------------------------------------------- /protobuf/network_connection.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/network_connection.pb.cc -------------------------------------------------------------------------------- /protobuf/network_connection.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/network_connection.pb.h -------------------------------------------------------------------------------- /protobuf/steamdatagram_messages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/steamdatagram_messages.pb.cc -------------------------------------------------------------------------------- /protobuf/steamdatagram_messages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/steamdatagram_messages.pb.h -------------------------------------------------------------------------------- /protobuf/steammessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/steammessages.pb.cc -------------------------------------------------------------------------------- /protobuf/steammessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/protobuf/steammessages.pb.h -------------------------------------------------------------------------------- /skinparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/skinparser.cpp -------------------------------------------------------------------------------- /skinparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/skinparser.h -------------------------------------------------------------------------------- /stickers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/stickers.cpp -------------------------------------------------------------------------------- /stickers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/stickers.h -------------------------------------------------------------------------------- /xhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/xhook.h -------------------------------------------------------------------------------- /xhook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/xhook.vcxproj -------------------------------------------------------------------------------- /xhook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/xhook.vcxproj.filters -------------------------------------------------------------------------------- /xhook.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maikel233/X-HOOK-For-CSGO/HEAD/xhook.vcxproj.user --------------------------------------------------------------------------------