├── .gitignore ├── AdressOffset.cs ├── App.config ├── CW_Beach.sln ├── Clear trace CW.bat ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── app.manifest ├── cwapi.cs ├── learn_c++_in_cs.csproj ├── learn_c++_in_cs.csproj.user └── packages.config /.gitignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .vs/ 3 | bin/ 4 | obj/ 5 | packages/ 6 | _ConfuserEx/ -------------------------------------------------------------------------------- /AdressOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/AdressOffset.cs -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/App.config -------------------------------------------------------------------------------- /CW_Beach.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/CW_Beach.sln -------------------------------------------------------------------------------- /Clear trace CW.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Clear trace CW.bat -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Form1.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/README.md -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/app.manifest -------------------------------------------------------------------------------- /cwapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/cwapi.cs -------------------------------------------------------------------------------- /learn_c++_in_cs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/learn_c++_in_cs.csproj -------------------------------------------------------------------------------- /learn_c++_in_cs.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/learn_c++_in_cs.csproj.user -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGeogeo/CW_ZM_Trainer/HEAD/packages.config --------------------------------------------------------------------------------