Basic Setup

This commit is contained in:
Simon Lübeß
2020-11-01 14:14:06 +01:00
parent e19392e2cf
commit 1adb665422
5 changed files with 52 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
namespace GlitchyEngine
{
public static class Test
{
public static void Print()
{
Console.WriteLine("Hello from the Glitchy Engine!");
}
}
}