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; } }