export class Cell { public X: number; public Y: number; constructor(x, y: number) { this.X = x; this.Y = y; } }