public class Spot { public int size; public int x, y; public Spot(int size) { this.size = size; this.x = -1; this.y = -1; } }