Backend und Parser + Receiver überarbeitet und unötige Klassen entfernt

This commit is contained in:
2014-04-03 13:04:22 +02:00
parent fc947925a7
commit b8f41e1ee5
10 changed files with 68 additions and 333 deletions

36
src/Backend.cs Normal file
View File

@@ -0,0 +1,36 @@
using System.Collections.Generic;
using WorldOfPeacecraft;
namespace Frontend
{
public class Backend : IBackend
{
public Backend ()
{
// Unsere Main-Methode
}
public List<Dragon> getDragons()
{
return null;
}
public List<Player> getPlayers()
{
return null;
}
public Tile[][] getMap()
{
return null;
}
public void sendCommand(string command)
{
}
public void sendChat(string message)
{
}
}
}