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