Player online list

This commit is contained in:
2014-05-09 10:38:08 +02:00
parent d0c9ec348b
commit b74a7aa301
7 changed files with 68 additions and 14 deletions

7
src/Gui/IPlayer.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace WorldOfPeacecraft
{
public interface IPlayer : IEntity
{
string GetName();
}
}