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