namespace Content.Server.Bible.Components { /// /// This component is for the chaplain's familiars, and mostly /// used to track their current state and to give a component to check for /// if any special behavior is needed. /// [RegisterComponent] public sealed partial class FamiliarComponent : Component { /// /// The entity this familiar was summoned from. /// [ViewVariables] public EntityUid? Source = null; } }