├── .gitattributes ├── .gitignore ├── DllExport.bat ├── EasySharp ├── EasySharp.csproj ├── EasySharp.csproj.user ├── Features │ ├── Legit │ │ ├── Aimbot.cs │ │ └── TriggerBot.cs │ ├── SkinChanger │ │ ├── CustomSkins.cs │ │ ├── DumpSkins.cs │ │ ├── FixSequence.cs │ │ └── SkinChanger.cs │ └── Utils.cs ├── Gui │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── chams.Designer.cs │ ├── chams.cs │ ├── chams.resx │ ├── hax.Designer.cs │ ├── hax.cs │ ├── hax.resx │ ├── hax2.Designer.cs │ ├── hax2.cs │ ├── hax2.resx │ ├── knife.Designer.cs │ ├── knife.cs │ ├── knife.resx │ ├── profile.Designer.cs │ ├── profile.cs │ ├── profile.resx │ ├── weapons.Designer.cs │ ├── weapons.cs │ └── weapons.resx ├── Hooks │ ├── HookEngine.cs │ └── Hooks.cs ├── Interface.cs ├── Interfaces │ ├── IClient.cs │ ├── IClientNetworkable.cs │ ├── IClientRenderable.cs │ ├── IClientUnknown.cs │ ├── IDebugOverlay.cs │ ├── IEngine.cs │ ├── IEngineTrace.cs │ ├── IEntity.cs │ ├── ILocalize.cs │ ├── IMaterialSystem.cs │ ├── IModelCache.cs │ ├── IModelInfo.cs │ ├── IModelRender.cs │ ├── IPanel.cs │ ├── ISurface.cs │ └── baseInterface.cs ├── Main.cs ├── Memory.cs ├── Offset.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Utils │ ├── NetvarManager.cs │ ├── Parser.cs │ ├── ProxyHook.cs │ ├── VpkParser.cs │ └── WinApi.cs ├── app.config └── packages.config ├── Injector ├── App.config ├── Injector.csproj ├── Properties │ └── AssemblyInfo.cs └── main.cs ├── LICENCE ├── README.md ├── SharpSkin.sln ├── StructsGenerator ├── App.config ├── Properties │ └── AssemblyInfo.cs ├── StructsGenerator.cs └── StructsGenerator.csproj ├── menu_tab1.png ├── menu_tab2.png ├── menu_tab3.png ├── preview.png └── skins_preset.cfg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/.gitignore -------------------------------------------------------------------------------- /DllExport.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/DllExport.bat -------------------------------------------------------------------------------- /EasySharp/EasySharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/EasySharp.csproj -------------------------------------------------------------------------------- /EasySharp/EasySharp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/EasySharp.csproj.user -------------------------------------------------------------------------------- /EasySharp/Features/Legit/Aimbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Features/Legit/Aimbot.cs -------------------------------------------------------------------------------- /EasySharp/Features/Legit/TriggerBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Features/Legit/TriggerBot.cs -------------------------------------------------------------------------------- /EasySharp/Features/SkinChanger/CustomSkins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Features/SkinChanger/CustomSkins.cs -------------------------------------------------------------------------------- /EasySharp/Features/SkinChanger/DumpSkins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Features/SkinChanger/DumpSkins.cs -------------------------------------------------------------------------------- /EasySharp/Features/SkinChanger/FixSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Features/SkinChanger/FixSequence.cs -------------------------------------------------------------------------------- /EasySharp/Features/SkinChanger/SkinChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Features/SkinChanger/SkinChanger.cs -------------------------------------------------------------------------------- /EasySharp/Features/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Features/Utils.cs -------------------------------------------------------------------------------- /EasySharp/Gui/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/Form1.Designer.cs -------------------------------------------------------------------------------- /EasySharp/Gui/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/Form1.cs -------------------------------------------------------------------------------- /EasySharp/Gui/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/Form1.resx -------------------------------------------------------------------------------- /EasySharp/Gui/chams.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/chams.Designer.cs -------------------------------------------------------------------------------- /EasySharp/Gui/chams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/chams.cs -------------------------------------------------------------------------------- /EasySharp/Gui/chams.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/chams.resx -------------------------------------------------------------------------------- /EasySharp/Gui/hax.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/hax.Designer.cs -------------------------------------------------------------------------------- /EasySharp/Gui/hax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/hax.cs -------------------------------------------------------------------------------- /EasySharp/Gui/hax.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/hax.resx -------------------------------------------------------------------------------- /EasySharp/Gui/hax2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/hax2.Designer.cs -------------------------------------------------------------------------------- /EasySharp/Gui/hax2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/hax2.cs -------------------------------------------------------------------------------- /EasySharp/Gui/hax2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/hax2.resx -------------------------------------------------------------------------------- /EasySharp/Gui/knife.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/knife.Designer.cs -------------------------------------------------------------------------------- /EasySharp/Gui/knife.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/knife.cs -------------------------------------------------------------------------------- /EasySharp/Gui/knife.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/knife.resx -------------------------------------------------------------------------------- /EasySharp/Gui/profile.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/profile.Designer.cs -------------------------------------------------------------------------------- /EasySharp/Gui/profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/profile.cs -------------------------------------------------------------------------------- /EasySharp/Gui/profile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/profile.resx -------------------------------------------------------------------------------- /EasySharp/Gui/weapons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/weapons.Designer.cs -------------------------------------------------------------------------------- /EasySharp/Gui/weapons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/weapons.cs -------------------------------------------------------------------------------- /EasySharp/Gui/weapons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Gui/weapons.resx -------------------------------------------------------------------------------- /EasySharp/Hooks/HookEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Hooks/HookEngine.cs -------------------------------------------------------------------------------- /EasySharp/Hooks/Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Hooks/Hooks.cs -------------------------------------------------------------------------------- /EasySharp/Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interface.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IClient.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IClientNetworkable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IClientNetworkable.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IClientRenderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IClientRenderable.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IClientUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IClientUnknown.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IDebugOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IDebugOverlay.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IEngine.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IEngineTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IEngineTrace.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IEntity.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/ILocalize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/ILocalize.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IMaterialSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IMaterialSystem.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IModelCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IModelCache.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IModelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IModelInfo.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IModelRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IModelRender.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/IPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/IPanel.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/ISurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/ISurface.cs -------------------------------------------------------------------------------- /EasySharp/Interfaces/baseInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Interfaces/baseInterface.cs -------------------------------------------------------------------------------- /EasySharp/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Main.cs -------------------------------------------------------------------------------- /EasySharp/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Memory.cs -------------------------------------------------------------------------------- /EasySharp/Offset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Offset.cs -------------------------------------------------------------------------------- /EasySharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EasySharp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EasySharp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Properties/Resources.resx -------------------------------------------------------------------------------- /EasySharp/Utils/NetvarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Utils/NetvarManager.cs -------------------------------------------------------------------------------- /EasySharp/Utils/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Utils/Parser.cs -------------------------------------------------------------------------------- /EasySharp/Utils/ProxyHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Utils/ProxyHook.cs -------------------------------------------------------------------------------- /EasySharp/Utils/VpkParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Utils/VpkParser.cs -------------------------------------------------------------------------------- /EasySharp/Utils/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/Utils/WinApi.cs -------------------------------------------------------------------------------- /EasySharp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/app.config -------------------------------------------------------------------------------- /EasySharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/EasySharp/packages.config -------------------------------------------------------------------------------- /Injector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/Injector/App.config -------------------------------------------------------------------------------- /Injector/Injector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/Injector/Injector.csproj -------------------------------------------------------------------------------- /Injector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/Injector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Injector/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/Injector/main.cs -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/README.md -------------------------------------------------------------------------------- /SharpSkin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/SharpSkin.sln -------------------------------------------------------------------------------- /StructsGenerator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/StructsGenerator/App.config -------------------------------------------------------------------------------- /StructsGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/StructsGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StructsGenerator/StructsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/StructsGenerator/StructsGenerator.cs -------------------------------------------------------------------------------- /StructsGenerator/StructsGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/StructsGenerator/StructsGenerator.csproj -------------------------------------------------------------------------------- /menu_tab1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/menu_tab1.png -------------------------------------------------------------------------------- /menu_tab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/menu_tab2.png -------------------------------------------------------------------------------- /menu_tab3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/menu_tab3.png -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/preview.png -------------------------------------------------------------------------------- /skins_preset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyHax/EasySharp/HEAD/skins_preset.cfg --------------------------------------------------------------------------------