You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae201_qwirkle/Qwirkle/QwirkleClassLibrary/Cell.cs

24 lines
356 B

namespace QwirkleClassLibrary;
public class Cell
{
private int x;
private int y;
public Cell(int x, int y)
{
this.x = x;
this.y = y;
Console.WriteLine("Cell (" + x + ", " + y + ") created");
}
public int GetX()
{
return this.x;
}
public int GetY()
{
return this.y;
}
}