Click or drag to resize

IGridTCell, TPointValues Property

A enumerable containing all the values of this grid.

Namespace:  Gamelogic.Grids
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
IEnumerable<TCell> Values { get; }

Property Value

Type: IEnumerableTCell
Examples
For example, the following two pieces of code do the same:
foreach(var point in grid)
{
    Debug.Log(grid[point]);
}

foreach(var value in grid.Values)
{
    Debug.Log(value);
}
See Also