2022-09-06 00:28:23 +10:00
|
|
|
using Content.Shared.NPC;
|
|
|
|
|
|
2023-08-25 17:05:21 +10:00
|
|
|
namespace Content.Server.NPC.Components;
|
|
|
|
|
|
|
|
|
|
public abstract partial class NPCComponent : SharedNPCComponent
|
2022-09-06 00:28:23 +10:00
|
|
|
{
|
2023-08-25 17:05:21 +10:00
|
|
|
/// <summary>
|
|
|
|
|
/// Contains all of the world data for a particular NPC in terms of how it sees the world.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField("blackboard", customTypeSerializer: typeof(NPCBlackboardSerializer))]
|
|
|
|
|
public NPCBlackboard Blackboard = new();
|
2022-09-06 00:28:23 +10:00
|
|
|
}
|