IEntity an die richtige Stelle verschoben

This commit is contained in:
2014-05-08 01:15:47 +02:00
parent b0d3e59a75
commit 3d93a54c45
2 changed files with 1 additions and 1 deletions

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

@@ -0,0 +1,7 @@
namespace WorldOfPeacecraft
{
public interface IEntity : IPositionable
{
int GetId();
}
}