20 lines
476 B
C#
20 lines
476 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.NPC;
|
|
|
|
/// <summary>
|
|
/// Debug message containing a pathfinding route.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class PathRouteMessage : EntityEventArgs
|
|
{
|
|
public List<DebugPathPoly> Path;
|
|
public Dictionary<DebugPathPoly, float> Costs;
|
|
|
|
public PathRouteMessage(List<DebugPathPoly> path, Dictionary<DebugPathPoly, float> costs)
|
|
{
|
|
Path = path;
|
|
Costs = costs;
|
|
}
|
|
}
|