OpenSim.Modules.PathFinding/src/A/Paths/PathType.cs

9 lines
114 B
C#
Raw Normal View History

2020-06-22 22:51:24 +00:00
namespace Roy_T.AStar.Paths
{
public enum PathType
{
Complete,
ClosestApproach
}
}