Die Gui hat nun ein Chatfenster. Bisher können lediglich nachrichten

versandt, jedoch nicht empfangen werden.
This commit is contained in:
2014-05-01 19:06:58 +02:00
parent 7ffba85903
commit 8cada1d5ce
6 changed files with 167 additions and 21 deletions

View File

@@ -99,12 +99,14 @@ namespace WorldOfPeacecraft
return Map.GetTiles ();
}
public void sendCommand (string command)
public void SendCommand (string command)
{
SenderBuffer.AddLine (command);
}
public void sendChat (string message)
public void SendChatMessage (string message)
{
SenderBuffer.AddLine ("ask:say:" + message);
}
public void RefreshGui()