├── .gitattributes ├── .gitignore ├── FROSTY v2.VC.db ├── FROSTY v2 ├── Autowall.cpp ├── Autowall.h ├── BaseClient.h ├── BulletTracers.cpp ├── BulletTracers.h ├── Chams.cpp ├── Chams.h ├── CommonIncludes.h ├── Configuration.cpp ├── Configuration.hpp ├── CreateMove.h ├── DLLMain.cpp ├── DoPostScreenSpaceEffects.h ├── DrawModelExecute.h ├── ESP.cpp ├── ESP.h ├── EngineClient.h ├── EnginePrediction.cpp ├── EnginePrediction.h ├── Entities.h ├── FROSTY.vcxproj ├── FROSTY.vcxproj.filters ├── FROSTY.vcxproj.user ├── FakeLag.h ├── FindMDL.h ├── FireEventClientSide.h ├── FrameStageNotify.h ├── Global.cpp ├── Global.h ├── GloveChanger.h ├── GrenadePrediction.cpp ├── GrenadePrediction.h ├── HookIncludes.h ├── Hooks.cpp ├── Hooks.h ├── HooksList.h ├── IDirect3DDevice9.h ├── ImGui │ ├── LICENSE │ ├── examples │ │ └── directx9_example │ │ │ ├── imgui_impl_dx9.cpp │ │ │ └── imgui_impl_dx9.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h ├── InPrediction.h ├── Interface.h ├── Interfaces.cpp ├── Interfaces.h ├── IsConnected.h ├── IsHltv.h ├── ItemDefinitions.h ├── LagComp.cpp ├── LagComp.h ├── LegitBot.cpp ├── LegitBot.h ├── Listener.h ├── Logging.h ├── Materials.h ├── MathFunctions.cpp ├── MathFunctions.h ├── Misc.cpp ├── Misc.h ├── MiscClasses.h ├── MiscDefinitions.h ├── MiscFunctions.cpp ├── MiscFunctions.h ├── MovementRecorder.h ├── NetVarManager.cpp ├── NetVarManager.h ├── OnScreenSizeChanged.h ├── OverrideView.h ├── PaintTraverse.h ├── Parser.cpp ├── Parser.h ├── PlaySound.h ├── PredictionSystem.h ├── RageBot.cpp ├── RageBot.h ├── Render.cpp ├── Render.h ├── Renderer.cpp ├── Renderer.h ├── Resolver.h ├── SDK.h ├── SkinChanger.h ├── Sounds.h ├── Source.cpp ├── SpoofedConvar.cpp ├── Strafer.h ├── Surface.h ├── SvCheatsGetBool.h ├── Themes.h ├── Utilities.cpp ├── Utilities.h ├── UtlBuffer.hpp ├── UtlMemory.hpp ├── UtlString.hpp ├── UtlVector.hpp ├── Variables.h ├── Vector.h ├── Vector2D.h ├── Visual.cpp ├── XorStr.hpp ├── bspflags.h ├── dropboxes.h ├── imgui.cpp ├── imguicolorpicker.cpp ├── json.hpp ├── memesets.cpp ├── memesets.h ├── recvproxy.cpp ├── recvproxy.h ├── resource.h └── singleton.hpp ├── README.md ├── breathless.sln └── fonts ├── astriumwep.ttf ├── badcache.ttf └── skrrtmenufont.ttf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/.gitignore -------------------------------------------------------------------------------- /FROSTY v2.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2.VC.db -------------------------------------------------------------------------------- /FROSTY v2/Autowall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Autowall.cpp -------------------------------------------------------------------------------- /FROSTY v2/Autowall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Autowall.h -------------------------------------------------------------------------------- /FROSTY v2/BaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/BaseClient.h -------------------------------------------------------------------------------- /FROSTY v2/BulletTracers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/BulletTracers.cpp -------------------------------------------------------------------------------- /FROSTY v2/BulletTracers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/BulletTracers.h -------------------------------------------------------------------------------- /FROSTY v2/Chams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Chams.cpp -------------------------------------------------------------------------------- /FROSTY v2/Chams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Chams.h -------------------------------------------------------------------------------- /FROSTY v2/CommonIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/CommonIncludes.h -------------------------------------------------------------------------------- /FROSTY v2/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Configuration.cpp -------------------------------------------------------------------------------- /FROSTY v2/Configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Configuration.hpp -------------------------------------------------------------------------------- /FROSTY v2/CreateMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/CreateMove.h -------------------------------------------------------------------------------- /FROSTY v2/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/DLLMain.cpp -------------------------------------------------------------------------------- /FROSTY v2/DoPostScreenSpaceEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/DoPostScreenSpaceEffects.h -------------------------------------------------------------------------------- /FROSTY v2/DrawModelExecute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/DrawModelExecute.h -------------------------------------------------------------------------------- /FROSTY v2/ESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ESP.cpp -------------------------------------------------------------------------------- /FROSTY v2/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ESP.h -------------------------------------------------------------------------------- /FROSTY v2/EngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/EngineClient.h -------------------------------------------------------------------------------- /FROSTY v2/EnginePrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/EnginePrediction.cpp -------------------------------------------------------------------------------- /FROSTY v2/EnginePrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/EnginePrediction.h -------------------------------------------------------------------------------- /FROSTY v2/Entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Entities.h -------------------------------------------------------------------------------- /FROSTY v2/FROSTY.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/FROSTY.vcxproj -------------------------------------------------------------------------------- /FROSTY v2/FROSTY.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/FROSTY.vcxproj.filters -------------------------------------------------------------------------------- /FROSTY v2/FROSTY.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/FROSTY.vcxproj.user -------------------------------------------------------------------------------- /FROSTY v2/FakeLag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/FakeLag.h -------------------------------------------------------------------------------- /FROSTY v2/FindMDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/FindMDL.h -------------------------------------------------------------------------------- /FROSTY v2/FireEventClientSide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/FireEventClientSide.h -------------------------------------------------------------------------------- /FROSTY v2/FrameStageNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/FrameStageNotify.h -------------------------------------------------------------------------------- /FROSTY v2/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Global.cpp -------------------------------------------------------------------------------- /FROSTY v2/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Global.h -------------------------------------------------------------------------------- /FROSTY v2/GloveChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/GloveChanger.h -------------------------------------------------------------------------------- /FROSTY v2/GrenadePrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/GrenadePrediction.cpp -------------------------------------------------------------------------------- /FROSTY v2/GrenadePrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/GrenadePrediction.h -------------------------------------------------------------------------------- /FROSTY v2/HookIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/HookIncludes.h -------------------------------------------------------------------------------- /FROSTY v2/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Hooks.cpp -------------------------------------------------------------------------------- /FROSTY v2/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Hooks.h -------------------------------------------------------------------------------- /FROSTY v2/HooksList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/HooksList.h -------------------------------------------------------------------------------- /FROSTY v2/IDirect3DDevice9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/IDirect3DDevice9.h -------------------------------------------------------------------------------- /FROSTY v2/ImGui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/LICENSE -------------------------------------------------------------------------------- /FROSTY v2/ImGui/examples/directx9_example/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/examples/directx9_example/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /FROSTY v2/ImGui/examples/directx9_example/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/examples/directx9_example/imgui_impl_dx9.h -------------------------------------------------------------------------------- /FROSTY v2/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/imconfig.h -------------------------------------------------------------------------------- /FROSTY v2/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/imgui.cpp -------------------------------------------------------------------------------- /FROSTY v2/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/imgui.h -------------------------------------------------------------------------------- /FROSTY v2/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /FROSTY v2/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /FROSTY v2/ImGui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/stb_rect_pack.h -------------------------------------------------------------------------------- /FROSTY v2/ImGui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/stb_textedit.h -------------------------------------------------------------------------------- /FROSTY v2/ImGui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ImGui/stb_truetype.h -------------------------------------------------------------------------------- /FROSTY v2/InPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/InPrediction.h -------------------------------------------------------------------------------- /FROSTY v2/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Interface.h -------------------------------------------------------------------------------- /FROSTY v2/Interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Interfaces.cpp -------------------------------------------------------------------------------- /FROSTY v2/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Interfaces.h -------------------------------------------------------------------------------- /FROSTY v2/IsConnected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/IsConnected.h -------------------------------------------------------------------------------- /FROSTY v2/IsHltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/IsHltv.h -------------------------------------------------------------------------------- /FROSTY v2/ItemDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/ItemDefinitions.h -------------------------------------------------------------------------------- /FROSTY v2/LagComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/LagComp.cpp -------------------------------------------------------------------------------- /FROSTY v2/LagComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/LagComp.h -------------------------------------------------------------------------------- /FROSTY v2/LegitBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/LegitBot.cpp -------------------------------------------------------------------------------- /FROSTY v2/LegitBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/LegitBot.h -------------------------------------------------------------------------------- /FROSTY v2/Listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Listener.h -------------------------------------------------------------------------------- /FROSTY v2/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Logging.h -------------------------------------------------------------------------------- /FROSTY v2/Materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Materials.h -------------------------------------------------------------------------------- /FROSTY v2/MathFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/MathFunctions.cpp -------------------------------------------------------------------------------- /FROSTY v2/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/MathFunctions.h -------------------------------------------------------------------------------- /FROSTY v2/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Misc.cpp -------------------------------------------------------------------------------- /FROSTY v2/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Misc.h -------------------------------------------------------------------------------- /FROSTY v2/MiscClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/MiscClasses.h -------------------------------------------------------------------------------- /FROSTY v2/MiscDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/MiscDefinitions.h -------------------------------------------------------------------------------- /FROSTY v2/MiscFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/MiscFunctions.cpp -------------------------------------------------------------------------------- /FROSTY v2/MiscFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/MiscFunctions.h -------------------------------------------------------------------------------- /FROSTY v2/MovementRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/MovementRecorder.h -------------------------------------------------------------------------------- /FROSTY v2/NetVarManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/NetVarManager.cpp -------------------------------------------------------------------------------- /FROSTY v2/NetVarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/NetVarManager.h -------------------------------------------------------------------------------- /FROSTY v2/OnScreenSizeChanged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/OnScreenSizeChanged.h -------------------------------------------------------------------------------- /FROSTY v2/OverrideView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/OverrideView.h -------------------------------------------------------------------------------- /FROSTY v2/PaintTraverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/PaintTraverse.h -------------------------------------------------------------------------------- /FROSTY v2/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Parser.cpp -------------------------------------------------------------------------------- /FROSTY v2/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Parser.h -------------------------------------------------------------------------------- /FROSTY v2/PlaySound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/PlaySound.h -------------------------------------------------------------------------------- /FROSTY v2/PredictionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/PredictionSystem.h -------------------------------------------------------------------------------- /FROSTY v2/RageBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/RageBot.cpp -------------------------------------------------------------------------------- /FROSTY v2/RageBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/RageBot.h -------------------------------------------------------------------------------- /FROSTY v2/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Render.cpp -------------------------------------------------------------------------------- /FROSTY v2/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Render.h -------------------------------------------------------------------------------- /FROSTY v2/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Renderer.cpp -------------------------------------------------------------------------------- /FROSTY v2/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Renderer.h -------------------------------------------------------------------------------- /FROSTY v2/Resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Resolver.h -------------------------------------------------------------------------------- /FROSTY v2/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/SDK.h -------------------------------------------------------------------------------- /FROSTY v2/SkinChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/SkinChanger.h -------------------------------------------------------------------------------- /FROSTY v2/Sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Sounds.h -------------------------------------------------------------------------------- /FROSTY v2/Source.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FROSTY v2/SpoofedConvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/SpoofedConvar.cpp -------------------------------------------------------------------------------- /FROSTY v2/Strafer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Strafer.h -------------------------------------------------------------------------------- /FROSTY v2/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Surface.h -------------------------------------------------------------------------------- /FROSTY v2/SvCheatsGetBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/SvCheatsGetBool.h -------------------------------------------------------------------------------- /FROSTY v2/Themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Themes.h -------------------------------------------------------------------------------- /FROSTY v2/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Utilities.cpp -------------------------------------------------------------------------------- /FROSTY v2/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Utilities.h -------------------------------------------------------------------------------- /FROSTY v2/UtlBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/UtlBuffer.hpp -------------------------------------------------------------------------------- /FROSTY v2/UtlMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/UtlMemory.hpp -------------------------------------------------------------------------------- /FROSTY v2/UtlString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/UtlString.hpp -------------------------------------------------------------------------------- /FROSTY v2/UtlVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/UtlVector.hpp -------------------------------------------------------------------------------- /FROSTY v2/Variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Variables.h -------------------------------------------------------------------------------- /FROSTY v2/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Vector.h -------------------------------------------------------------------------------- /FROSTY v2/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/Vector2D.h -------------------------------------------------------------------------------- /FROSTY v2/Visual.cpp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FROSTY v2/XorStr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/XorStr.hpp -------------------------------------------------------------------------------- /FROSTY v2/bspflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/bspflags.h -------------------------------------------------------------------------------- /FROSTY v2/dropboxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/dropboxes.h -------------------------------------------------------------------------------- /FROSTY v2/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/imgui.cpp -------------------------------------------------------------------------------- /FROSTY v2/imguicolorpicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/imguicolorpicker.cpp -------------------------------------------------------------------------------- /FROSTY v2/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/json.hpp -------------------------------------------------------------------------------- /FROSTY v2/memesets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/memesets.cpp -------------------------------------------------------------------------------- /FROSTY v2/memesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/memesets.h -------------------------------------------------------------------------------- /FROSTY v2/recvproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/recvproxy.cpp -------------------------------------------------------------------------------- /FROSTY v2/recvproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/recvproxy.h -------------------------------------------------------------------------------- /FROSTY v2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/resource.h -------------------------------------------------------------------------------- /FROSTY v2/singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/FROSTY v2/singleton.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/README.md -------------------------------------------------------------------------------- /breathless.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/breathless.sln -------------------------------------------------------------------------------- /fonts/astriumwep.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/fonts/astriumwep.ttf -------------------------------------------------------------------------------- /fonts/badcache.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/fonts/badcache.ttf -------------------------------------------------------------------------------- /fonts/skrrtmenufont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smefpw/breathless/HEAD/fonts/skrrtmenufont.ttf --------------------------------------------------------------------------------