Files
crystall-punk-14/Content.Shared/NPC/Events/HTNMessage.cs

14 lines
286 B
C#
Raw Permalink Normal View History

using Robust.Shared.Serialization;
namespace Content.Shared.NPC;
/// <summary>
/// Has debug information for HTN NPCs.
/// </summary>
[Serializable, NetSerializable]
public sealed class HTNMessage : EntityEventArgs
{
public NetEntity Uid;
public string Text = string.Empty;
}