Initial commit

This commit is contained in:
Andreas Mikko
2026-01-05 14:44:36 +01:00
commit 2f48a877e1
4 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>OBP200_RolePlayingGame</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,9 @@
namespace OBP200_RolePlayingGame;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}