This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/PathResult.cs
2015-07-02 17:05:44 -06:00

10 lines
166 B
C#

using System;
using System.Collections.Generic;
namespace TrueCraft.API
{
public class PathResult
{
public IList<Coordinates3D> Waypoints;
}
}