Exemplo n.º 1
0
    public IEnumerable <Cell> GetOpenCells()
    {
        FreeFilledReservedCells();

        return(ZoneCells.GetCells()
               .Where(CellCanHoldItem)
               .Except(_reservedCells));
    }
Exemplo n.º 2
0
 internal Cell GetLocation()
 {
     return(ZoneCells.GetCells()[0]);
 }
Exemplo n.º 3
0
 public int GetMaxItemCapacity()
 {
     return(ZoneCells.GetCells().Count);
 }