2022-09-30 14:39:48 +10:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.NPC;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class PathPolysRefreshMessage : EntityEventArgs
|
|
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
public NetEntity GridUid;
|
2022-09-30 14:39:48 +10:00
|
|
|
public Vector2i Origin;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Multi-dimension arrays aren't supported so
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Dictionary<Vector2i, List<DebugPathPoly>> Polys = new();
|
|
|
|
|
}
|