From 34a3e409ab4a274fe48c9e46f87f91c5f6eef905 Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Wed, 16 Sep 2020 09:32:41 +0200 Subject: [PATCH] added new project for the vr engine --- RH-Engine/Program.cs | 12 ++++++++++++ RH-Engine/RH-Engine.csproj | 9 +++++++++ RH-Engine/RH-Engine.sln | 25 +++++++++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 RH-Engine/Program.cs create mode 100644 RH-Engine/RH-Engine.csproj create mode 100644 RH-Engine/RH-Engine.sln diff --git a/RH-Engine/Program.cs b/RH-Engine/Program.cs new file mode 100644 index 0000000..542eb44 --- /dev/null +++ b/RH-Engine/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace RH_Engine +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/RH-Engine/RH-Engine.csproj b/RH-Engine/RH-Engine.csproj new file mode 100644 index 0000000..5f86a02 --- /dev/null +++ b/RH-Engine/RH-Engine.csproj @@ -0,0 +1,9 @@ + + + + Exe + netcoreapp3.1 + RH_Engine + + + diff --git a/RH-Engine/RH-Engine.sln b/RH-Engine/RH-Engine.sln new file mode 100644 index 0000000..90896e8 --- /dev/null +++ b/RH-Engine/RH-Engine.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30503.244 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RH-Engine", "RH-Engine.csproj", "{12E8F82B-C464-4152-B4FB-FCB5E1A9FCFA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {12E8F82B-C464-4152-B4FB-FCB5E1A9FCFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {12E8F82B-C464-4152-B4FB-FCB5E1A9FCFA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {12E8F82B-C464-4152-B4FB-FCB5E1A9FCFA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {12E8F82B-C464-4152-B4FB-FCB5E1A9FCFA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C75B8E99-BE3D-496F-B2F0-03C4069493B2} + EndGlobalSection +EndGlobal