Skip to content

Commit 2e28029

Browse files
committed
- Split source code and basic example
1 parent 9249c49 commit 2e28029

19 files changed

Lines changed: 320 additions & 42 deletions

CleanCheat.sln

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CleanCheat", "src\CleanChea
77
EndProject
88
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnrealInternalExample", "examples\UnrealInternalExample\UnrealInternalExample.vcxproj", "{9A5E5580-91BC-4929-A2B9-921302D1E685}"
99
EndProject
10+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BasicExample", "examples\BasicExample\BasicExample.vcxproj", "{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}"
11+
EndProject
1012
Global
1113
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1214
Debug|Win32 = Debug|Win32
@@ -18,7 +20,6 @@ Global
1820
{BEEC61DF-CAB9-4549-B120-AB313524296D}.Debug|Win32.ActiveCfg = Debug|Win32
1921
{BEEC61DF-CAB9-4549-B120-AB313524296D}.Debug|Win32.Build.0 = Debug|Win32
2022
{BEEC61DF-CAB9-4549-B120-AB313524296D}.Debug|x64.ActiveCfg = Debug|x64
21-
{BEEC61DF-CAB9-4549-B120-AB313524296D}.Debug|x64.Build.0 = Debug|x64
2223
{BEEC61DF-CAB9-4549-B120-AB313524296D}.Release|Win32.ActiveCfg = Release|Win32
2324
{BEEC61DF-CAB9-4549-B120-AB313524296D}.Release|Win32.Build.0 = Release|Win32
2425
{BEEC61DF-CAB9-4549-B120-AB313524296D}.Release|x64.ActiveCfg = Release|x64
@@ -31,6 +32,14 @@ Global
3132
{9A5E5580-91BC-4929-A2B9-921302D1E685}.Release|Win32.Build.0 = Release|Win32
3233
{9A5E5580-91BC-4929-A2B9-921302D1E685}.Release|x64.ActiveCfg = Release|x64
3334
{9A5E5580-91BC-4929-A2B9-921302D1E685}.Release|x64.Build.0 = Release|x64
35+
{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}.Debug|Win32.ActiveCfg = Debug|Win32
36+
{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}.Debug|Win32.Build.0 = Debug|Win32
37+
{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}.Debug|x64.ActiveCfg = Debug|x64
38+
{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}.Debug|x64.Build.0 = Debug|x64
39+
{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}.Release|Win32.ActiveCfg = Release|Win32
40+
{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}.Release|Win32.Build.0 = Release|Win32
41+
{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}.Release|x64.ActiveCfg = Release|x64
42+
{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}.Release|x64.Build.0 = Release|x64
3443
EndGlobalSection
3544
GlobalSection(SolutionProperties) = preSolution
3645
HideSolutionNode = FALSE
Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<ClCompile Include="..\..\src\CleanCheat\**\*.cpp">
23+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
24+
</ClCompile>
25+
<ClCompile Include="DataProviders\BasicDataProvider.cpp"/>
26+
<ClCompile Include="Runners\BasicRunner.cpp"/>
27+
<ClCompile Include="Features\BasicFeature.cpp"/>
28+
<ClCompile Include="Features\TestFeature.cpp"/>
29+
<ClCompile Include="Main.cpp"/>
30+
<ClCompile Include="MySharedData.cpp"/>
31+
<ClInclude Include="..\..\src\CleanCheat\**\*.h"/>
32+
<ClInclude Include="DataProviders\BasicDataProvider.h"/>
33+
<ClInclude Include="Features\BasicFeature.h"/>
34+
<ClInclude Include="Features\TestFeature.h"/>
35+
<ClInclude Include="Runners\BasicRunner.h"/>
36+
<ClInclude Include="MySharedData.h"/>
37+
</ItemGroup>
38+
<PropertyGroup Label="Globals">
39+
<VCProjectVersion>15.0</VCProjectVersion>
40+
<ProjectGuid>{3E9D758B-0FCA-4D12-817E-F6CC0B6D46DA}</ProjectGuid>
41+
<Keyword>Win32Proj</Keyword>
42+
<RootNamespace>CleanCheat</RootNamespace>
43+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
44+
</PropertyGroup>
45+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
46+
<PropertyGroup>
47+
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
48+
</PropertyGroup>
49+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
50+
<UseDebugLibraries>true</UseDebugLibraries>
51+
<PlatformToolset>v143</PlatformToolset>
52+
<CharacterSet>Unicode</CharacterSet>
53+
</PropertyGroup>
54+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
55+
<UseDebugLibraries>false</UseDebugLibraries>
56+
<PlatformToolset>v143</PlatformToolset>
57+
<WholeProgramOptimization>true</WholeProgramOptimization>
58+
<CharacterSet>Unicode</CharacterSet>
59+
</PropertyGroup>
60+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
61+
<ConfigurationType>Application</ConfigurationType>
62+
<UseDebugLibraries>true</UseDebugLibraries>
63+
<PlatformToolset>v143</PlatformToolset>
64+
<CharacterSet>Unicode</CharacterSet>
65+
</PropertyGroup>
66+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
67+
<UseDebugLibraries>false</UseDebugLibraries>
68+
<PlatformToolset>v143</PlatformToolset>
69+
<WholeProgramOptimization>true</WholeProgramOptimization>
70+
<CharacterSet>Unicode</CharacterSet>
71+
</PropertyGroup>
72+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
73+
<ImportGroup Label="ExtensionSettings">
74+
</ImportGroup>
75+
<ImportGroup Label="Shared">
76+
</ImportGroup>
77+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
79+
</ImportGroup>
80+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
81+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
82+
</ImportGroup>
83+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
84+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
85+
</ImportGroup>
86+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
87+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
88+
</ImportGroup>
89+
<PropertyGroup Label="UserMacros"/>
90+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
91+
<LinkIncremental>true</LinkIncremental>
92+
</PropertyGroup>
93+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
94+
<LinkIncremental>true</LinkIncremental>
95+
<SourcePath>$(VC_SourcePath);$(SolutionDir)src\</SourcePath>
96+
</PropertyGroup>
97+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
98+
<LinkIncremental>false</LinkIncremental>
99+
</PropertyGroup>
100+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
101+
<LinkIncremental>false</LinkIncremental>
102+
</PropertyGroup>
103+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
104+
<ClCompile>
105+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
106+
<WarningLevel>Level3</WarningLevel>
107+
<Optimization>Disabled</Optimization>
108+
<SDLCheck>true</SDLCheck>
109+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
110+
<ConformanceMode>true</ConformanceMode>
111+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
112+
<AdditionalIncludeDirectories>$(ProjectDir);$(SolutionDir)src\;</AdditionalIncludeDirectories>
113+
<LanguageStandard>stdcpp17</LanguageStandard>
114+
</ClCompile>
115+
<Link>
116+
<SubSystem>Console</SubSystem>
117+
<GenerateDebugInformation>true</GenerateDebugInformation>
118+
</Link>
119+
</ItemDefinitionGroup>
120+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
121+
<ClCompile>
122+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
123+
<WarningLevel>Level3</WarningLevel>
124+
<Optimization>Disabled</Optimization>
125+
<SDLCheck>true</SDLCheck>
126+
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
127+
<ConformanceMode>true</ConformanceMode>
128+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
129+
<AdditionalIncludeDirectories>$(ProjectDir);$(SolutionDir)src\;</AdditionalIncludeDirectories>
130+
<LanguageStandard>stdcpp17</LanguageStandard>
131+
</ClCompile>
132+
<Link>
133+
<SubSystem>Console</SubSystem>
134+
<GenerateDebugInformation>true</GenerateDebugInformation>
135+
<AdditionalOptions></AdditionalOptions>
136+
</Link>
137+
</ItemDefinitionGroup>
138+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
139+
<ClCompile>
140+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
141+
<WarningLevel>Level3</WarningLevel>
142+
<Optimization>MaxSpeed</Optimization>
143+
<FunctionLevelLinking>true</FunctionLevelLinking>
144+
<IntrinsicFunctions>true</IntrinsicFunctions>
145+
<SDLCheck>true</SDLCheck>
146+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
147+
<ConformanceMode>true</ConformanceMode>
148+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
149+
<AdditionalIncludeDirectories>$(ProjectDir);$(SolutionDir)src\;</AdditionalIncludeDirectories>
150+
<LanguageStandard>stdcpp17</LanguageStandard>
151+
</ClCompile>
152+
<Link>
153+
<SubSystem>Console</SubSystem>
154+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
155+
<OptimizeReferences>true</OptimizeReferences>
156+
<GenerateDebugInformation>true</GenerateDebugInformation>
157+
</Link>
158+
</ItemDefinitionGroup>
159+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
160+
<ClCompile>
161+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
162+
<WarningLevel>Level3</WarningLevel>
163+
<Optimization>MaxSpeed</Optimization>
164+
<FunctionLevelLinking>true</FunctionLevelLinking>
165+
<IntrinsicFunctions>true</IntrinsicFunctions>
166+
<SDLCheck>true</SDLCheck>
167+
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
168+
<ConformanceMode>true</ConformanceMode>
169+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
170+
<AdditionalIncludeDirectories>$(ProjectDir);$(SolutionDir)src\;</AdditionalIncludeDirectories>
171+
<LanguageStandard>stdcpp17</LanguageStandard>
172+
</ClCompile>
173+
<Link>
174+
<SubSystem>Console</SubSystem>
175+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
176+
<OptimizeReferences>true</OptimizeReferences>
177+
<GenerateDebugInformation>true</GenerateDebugInformation>
178+
</Link>
179+
</ItemDefinitionGroup>
180+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
181+
<ImportGroup Label="ExtensionTargets">
182+
</ImportGroup>
183+
</Project>
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Source Files">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="Header Files">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hh;hpp;hxx;hm;inl;inc;ipp;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="Resource Files">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<ClCompile Include="CleanCheat.cpp">
19+
<Filter>Source Files</Filter>
20+
</ClCompile>
21+
</ItemGroup>
22+
<ItemGroup>
23+
<ClInclude Include="CleanCheat.h">
24+
<Filter>Header Files</Filter>
25+
</ClInclude>
26+
<ClInclude Include="FeatureBase.h">
27+
<Filter>Header Files</Filter>
28+
</ClInclude>
29+
<ClInclude Include="Macros.h">
30+
<Filter>Header Files</Filter>
31+
</ClInclude>
32+
<ClInclude Include="RunnerBase.h">
33+
<Filter>Header Files</Filter>
34+
</ClInclude>
35+
<ClInclude Include="SharedDataBase.h">
36+
<Filter>Header Files</Filter>
37+
</ClInclude>
38+
</ItemGroup>
39+
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)