Bilder in GUI eingebunden

This commit is contained in:
2014-05-08 00:43:01 +02:00
parent 637bf538ef
commit 238ea02bb9
6 changed files with 99 additions and 40 deletions

7
IEntity.cs Normal file
View File

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