Files
inf3/src/Gui/IPlayer.cs
2014-05-09 10:38:08 +02:00

8 lines
94 B
C#

namespace WorldOfPeacecraft
{
public interface IPlayer : IEntity
{
string GetName();
}
}