2022-09-06 00:28:23 +10:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.NPC;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Has debug information for HTN NPCs.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class HTNMessage : EntityEventArgs
|
|
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
public NetEntity Uid;
|
2022-09-06 00:28:23 +10:00
|
|
|
public string Text = string.Empty;
|
|
|
|
|
}
|