Grid.GridCell.GridCell C# (CSharp) Method

GridCell() public method

public GridCell ( int index, GridType gridType, Vector3 pos ) : System.Collections.Generic
index int
gridType GridType
pos Vector3
return System.Collections.Generic
        public GridCell(int index, GridType gridType, Vector3 pos)
        {
            this.index = index;
            this.edges = new float[(int)gridType];
            this.position = pos;
        }