struct GridNode
(Niantic.Lightship.AR.NavigationMesh.GridNode)。
概要
歩きやすいエリアをスキャンする際に使用するグリッド要素のデータを囲む。
	struct GridNode:IEquatable< GridNode > {
		// fields
	
		 readonly Vector2Int Coordinates;
		 float Elevation;
		 float Deviation;
		 float DiffFromNeighbour;
		// methods
	
		GridNode(Vector2Int coordinates);
		bool Equals(GridNode other);
		override int GetHashCode();
};