added empty server and client projects

This commit is contained in:
Sem van der Hoeven
2020-09-23 10:43:03 +02:00
parent b391583107
commit 1041aa0391
5 changed files with 52 additions and 0 deletions

12
Client/Program.cs Normal file
View File

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