Пример #1
0
        public ControllerMap(LevelDesignerPage newView)
        {
            this.view = newView;

            this.myMap       = new ModelMap();
            this.constructor = new MapConstructor(this);
        }
Пример #2
0
 public Cell(int col, int row, CellSide rightWall, CellSide bottomWall, ModelMap map)
 {
     this.myColumn     = col;
     this.myRow        = row;
     this.myRightWall  = rightWall;
     this.myBottomWall = bottomWall;
     this.myMap        = map;
 }