Interface IGridCells
Namespace: DiceRolling.Grids
Assembly: dice-rolling.dll
Interface que define as células de uma grid.
public interface IGridCells
Properties
Cells
Array\<GridCellType?>? Cells { get; }
Property Value
Array<GridCellType?>?
Methods
GetCell(int, int)
GridCellType? GetCell(int row, int column)
Parameters
row
int
column
int
Returns
GetCellIndex(int, int)
int GetCellIndex(int row, int column)
Parameters
row
int
column
int
Returns
SetCellValue(int, int, int)
void SetCellValue(int row, int column, int value)
Parameters
row
int
column
int
value
int