Files
OldThink/Content.Shared/NPC/Events/PathPolysRefreshMessage.cs

16 lines
380 B
C#
Raw Normal View History

2022-09-30 14:39:48 +10:00
using Robust.Shared.Serialization;
namespace Content.Shared.NPC;
[Serializable, NetSerializable]
public sealed class PathPolysRefreshMessage : EntityEventArgs
{
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();
}