public void CellAction(CharacterBase character) { if (!_cells.ContainsKey(character.CurrentCoordinate)) { return; } CellBase cell = _cells[character.CurrentCoordinate]; cell.ContainedCharacter = character; }
public void Exclude(CellBase cell) { _cells.Remove(cell.Coordinate); }
public void AddCell(CellBase cell) { _cells[cell.Coordinate] = cell; }