TrueCraft/TrueCraft.API/PathResult.cs
2015-07-02 22:08:41 -06:00

16 lines
264 B
C#

using System;
using System.Collections.Generic;
namespace TrueCraft.API
{
public class PathResult
{
public PathResult()
{
Index = 0;
}
public IList<Coordinates3D> Waypoints;
public int Index;
}
}