Files
inf3/Start.cs
Daniel Herrmann 2cac9a9203 Main in separater Klasse.
Neue Klassen: Map, Tile, Player, Dragon
2014-04-03 10:17:40 +02:00

14 lines
273 B
C#

using System;
using System.Threading;
using System.Net.Sockets;
public class Start
{
public static void Main()
{
TcpClient client = new TcpClient("localhost", 9999);
Program program = new Program(client);
program.StartThreads();
}
}