Example #1
0
 public HollowCell(int x, int y)
 {
     _x              = x;
     _y              = y;
     _cellTypeEnum   = CellTypesEnum.Hollow;
     _cellStatesEnum = CellStatesEnum.Lock;
 }
Example #2
0
 public NormalCell(int x, int y)
 {
     _x              = x;
     _y              = y;
     _cellTypeEnum   = CellTypesEnum.Normal;
     _cellStatesEnum = CellStatesEnum.Wait;
 }