Files
Proftaak-RH-B4/Server/Program.cs
fabjuuuh 748f7eed46 Server
2020-09-23 12:11:32 +02:00

21 lines
362 B
C#

using System;
using System.Net;
using System.Net.Sockets;
namespace Server
{
class Program
{
static void Main(string[] args)
{
Communication communication = new Communication(new TcpListener(IPAddress.Any, 5555));
communication.Start();
while (true)
{
}
}
}
}