20 lines
275 B
C#
20 lines
275 B
C#
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;
|
|
}
|
|
}
|
|
} |