6 lines
81 B
C#
6 lines
81 B
C#
|
namespace astar.PathingHelper;
|
|||
|
|
|||
|
public enum PathMeasure
|
|||
|
{
|
|||
|
Distance, Time
|
|||
|
}
|