16 lines
264 B
C#
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;
|
|
}
|
|
} |