commit 2f48a877e1be4737f65500f0f52f98ba5ba56181 Author: Andreas Mikko Date: Mon Jan 5 14:44:36 2026 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/OBP200-RolePlayingGame.sln b/OBP200-RolePlayingGame.sln new file mode 100644 index 0000000..31c4b96 --- /dev/null +++ b/OBP200-RolePlayingGame.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OBP200-RolePlayingGame", "OBP200-RolePlayingGame\OBP200-RolePlayingGame.csproj", "{3F0F74A9-5124-4725-B191-F8F34092D6D1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3F0F74A9-5124-4725-B191-F8F34092D6D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3F0F74A9-5124-4725-B191-F8F34092D6D1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3F0F74A9-5124-4725-B191-F8F34092D6D1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3F0F74A9-5124-4725-B191-F8F34092D6D1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/OBP200-RolePlayingGame/OBP200-RolePlayingGame.csproj b/OBP200-RolePlayingGame/OBP200-RolePlayingGame.csproj new file mode 100644 index 0000000..034f9d4 --- /dev/null +++ b/OBP200-RolePlayingGame/OBP200-RolePlayingGame.csproj @@ -0,0 +1,11 @@ + + + + Exe + net10.0 + OBP200_RolePlayingGame + enable + enable + + + diff --git a/OBP200-RolePlayingGame/Program.cs b/OBP200-RolePlayingGame/Program.cs new file mode 100644 index 0000000..8dd1733 --- /dev/null +++ b/OBP200-RolePlayingGame/Program.cs @@ -0,0 +1,9 @@ +namespace OBP200_RolePlayingGame; + +class Program +{ + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } +}