Adding basic functionality and testing

This commit is contained in:
2019-07-17 16:01:43 +03:00
parent 86f33a920d
commit 7ca14ee942
7 changed files with 245 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
using MTSC.Server;
using System;
namespace MTSC_TestServer
{
class Program
{
static void Main(string[] args)
{
Server server = new Server(555);
server.
}
}
}