diff --git a/LobbyServer/LobbyServer.csproj b/LobbyServer/LobbyServer.csproj new file mode 100644 index 0000000..23df604 --- /dev/null +++ b/LobbyServer/LobbyServer.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp2.1 + + + diff --git a/LobbyServer/Program.cs b/LobbyServer/Program.cs new file mode 100644 index 0000000..5a2b7e9 --- /dev/null +++ b/LobbyServer/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace LobbyServer +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +}