Esempio n. 1
0
 public Map(int rows, int columns)
 {
     this.Rows              = rows;
     this.Columns           = columns;
     this.Cells             = new MapCellList();
     this.Patterns          = new MapPatternList();
     this.IncludeDimensions = true;
     this.Reduction         = ReductionType.None;
 }
Esempio n. 2
0
 public Map()
 {
     this.Cells     = new MapCellList();
     this.Reduction = ReductionType.None;
     this.Patterns  = new MapPatternList();
 }