Pathwalker-Klasse (Blatt 7)

This commit is contained in:
2014-04-28 15:03:46 +02:00
parent a384310766
commit 7a8df2e147
5 changed files with 104 additions and 9 deletions

20
src/Coordinate.cs Normal file
View File

@@ -0,0 +1,20 @@
namespace WorldOfPeacecraft
{
public class Coordinate
{
public int X { get; set; }
public int Y { get; set; }
public Coordinate (int x, int y)
{
this.X = x;
this.Y = y;
}
public void setCoordinate(int x, int y)
{
this.X = x;
this.Y = y;
}
}
}