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