From dc0549a40e84908bce2679ca3a0e1801409e1845 Mon Sep 17 00:00:00 2001 From: Light3039 Date: Wed, 19 May 2021 21:28:51 +0430 Subject: [PATCH] hello world --- .gitignore | 5 +++++ Light Engine.sln | 31 +++++++++++++++++++++++++++++++ Sandbox/main.cpp | 9 +++++++++ 3 files changed, 45 insertions(+) create mode 100644 Light Engine.sln create mode 100644 Sandbox/main.cpp diff --git a/.gitignore b/.gitignore index 259148f..bb660c6 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,8 @@ *.exe *.out *.app + +bin/ +bin-int/ +.vs/ +**.vcx** \ No newline at end of file diff --git a/Light Engine.sln b/Light Engine.sln new file mode 100644 index 0000000..3d74f78 --- /dev/null +++ b/Light Engine.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30330.147 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Light Engine", "Light Engine\Light Engine.vcxproj", "{039B5335-8EC7-4005-AFF9-833E1B760755}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Sandbox", "Sandbox\Sandbox.vcxproj", "{A72B03C9-4FE6-4288-AE22-8DD8E4E37A4D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {039B5335-8EC7-4005-AFF9-833E1B760755}.Debug|x64.ActiveCfg = Debug|x64 + {039B5335-8EC7-4005-AFF9-833E1B760755}.Debug|x64.Build.0 = Debug|x64 + {039B5335-8EC7-4005-AFF9-833E1B760755}.Release|x64.ActiveCfg = Release|x64 + {039B5335-8EC7-4005-AFF9-833E1B760755}.Release|x64.Build.0 = Release|x64 + {A72B03C9-4FE6-4288-AE22-8DD8E4E37A4D}.Debug|x64.ActiveCfg = Debug|x64 + {A72B03C9-4FE6-4288-AE22-8DD8E4E37A4D}.Debug|x64.Build.0 = Debug|x64 + {A72B03C9-4FE6-4288-AE22-8DD8E4E37A4D}.Release|x64.ActiveCfg = Release|x64 + {A72B03C9-4FE6-4288-AE22-8DD8E4E37A4D}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {ADE7ECA1-8548-4C9C-90A7-F56634490371} + EndGlobalSection +EndGlobal diff --git a/Sandbox/main.cpp b/Sandbox/main.cpp new file mode 100644 index 0000000..58901c3 --- /dev/null +++ b/Sandbox/main.cpp @@ -0,0 +1,9 @@ +#include + +int main() +{ + std::cout << "Hello world!" << std::endl; + std::cin.get(); + + return 0; +} \ No newline at end of file