11 lines
229 B
C#
11 lines
229 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace VOID.Generic.Navigation
|
|
{
|
|
public class PathCorrected
|
|
{
|
|
public List<Vector3> path;
|
|
public List<PathCorrectedLinkData> traversables;
|
|
}
|
|
} |