diff --git a/src/Entity.cs b/src/Entity.cs index 355eaea..ee8b675 100644 --- a/src/Entity.cs +++ b/src/Entity.cs @@ -41,6 +41,12 @@ namespace WorldOfPeacecraft return Coord.X; } + public void SetPos (int x, int y) + { + SetX (x); + SetY (y); + } + public void SetY (int y) { this.Coord.Y = y;