import java.awt.*; public class Level { private Cell[][] grid; private int rows, cols, top, left, size; public Level(int rows, int cols, int top, int left, int size) { this.rows = rows; this.cols = cols; this.top = top; this.left = left; this.size = size; grid = new Cell[rows][cols]; for(int r=0; r