Backend und Parser + Receiver überarbeitet und unötige Klassen entfernt
This commit is contained in:
36
src/Backend.cs
Normal file
36
src/Backend.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user