hello world
This commit is contained in:
parent
66b7f997aa
commit
dc0549a40e
3 changed files with 45 additions and 0 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -30,3 +30,8 @@
|
||||||
*.exe
|
*.exe
|
||||||
*.out
|
*.out
|
||||||
*.app
|
*.app
|
||||||
|
|
||||||
|
bin/
|
||||||
|
bin-int/
|
||||||
|
.vs/
|
||||||
|
**.vcx**
|
31
Light Engine.sln
Normal file
31
Light Engine.sln
Normal file
|
@ -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
|
9
Sandbox/main.cpp
Normal file
9
Sandbox/main.cpp
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::cout << "Hello world!" << std::endl;
|
||||||
|
std::cin.get();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue