using Robust.Shared.Serialization;
namespace Content.Shared.NPC;
///
/// Debug message containing a pathfinding route.
///
[Serializable, NetSerializable]
public sealed class PathRouteMessage : EntityEventArgs
{
public List Path;
public Dictionary Costs;
public PathRouteMessage(List path, Dictionary costs)
{
Path = path;
Costs = costs;
}
}