Beispiel #1
0
 public mazeElement(int _width, int _height, Color _color, eBounds _direction)
 {
     width = _width;
     height = _height;
     box = new frame(width, height);
     setColor(_color);
     setDirection(_direction);
 }
 public mazeGraphicArray(int row_number, int column_number, int cell_width, int cell_height, Color bound_color, eBounds bounds)
 {
     initMazeElements(row_number, column_number, cell_width, cell_height, bound_color, bounds);
     map = new frame(Width, Height);
 }