NPCComponent.cs 399 B

123456789101112
  1. using Content.Shared.NPC;
  2. namespace Content.Server.NPC.Components;
  3. public abstract partial class NPCComponent : SharedNPCComponent
  4. {
  5. /// <summary>
  6. /// Contains all of the world data for a particular NPC in terms of how it sees the world.
  7. /// </summary>
  8. [DataField("blackboard", customTypeSerializer: typeof(NPCBlackboardSerializer))]
  9. public NPCBlackboard Blackboard = new();
  10. }