Main in separater Klasse.

Neue Klassen: Map, Tile, Player, Dragon
This commit is contained in:
Daniel Herrmann
2014-04-03 10:17:40 +02:00
parent 4a2a01853a
commit 2cac9a9203
5 changed files with 331 additions and 0 deletions

14
Start.cs Normal file
View File

@@ -0,0 +1,14 @@
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();
}
}