Arcade
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events
GameAPI.AStarEdge< T > Struct Template Reference

Represents a connection on a graph, for use with AStar(). More...

Public Attributes

readonly T Dest
 The node this connection leads to. More...
 
readonly float Cost
 The cost of using this connection. More...
 

Detailed Description

Represents a connection on a graph, for use with AStar().

Template Parameters
TType of each node.

Member Data Documentation

readonly float GameAPI.AStarEdge< T >.Cost

The cost of using this connection.

readonly T GameAPI.AStarEdge< T >.Dest

The node this connection leads to.