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