SharpNav.Pathfinding.NavPoint.NavPoint C# (CSharp) Method

NavPoint() public method

Initializes a new instance of the NavPoint struct.
public NavPoint ( NavPolyId poly, Microsoft.Xna.Framework.Vector3 pos )
poly NavPolyId The polygon that the point is on.
pos Microsoft.Xna.Framework.Vector3 The 3d position of the point.
        public NavPoint(NavPolyId poly, Vector3 pos)
        {
            this.Polygon = poly;
            this.Position = pos;
        }
NavPoint