1
0

FamiliarComponent.cs 536 B

1234567891011121314151617
  1. namespace Content.Server.Bible.Components
  2. {
  3. /// <summary>
  4. /// This component is for the chaplain's familiars, and mostly
  5. /// used to track their current state and to give a component to check for
  6. /// if any special behavior is needed.
  7. /// </summary>
  8. [RegisterComponent]
  9. public sealed partial class FamiliarComponent : Component
  10. {
  11. /// <summary>
  12. /// The entity this familiar was summoned from.
  13. /// </summary>
  14. [ViewVariables]
  15. public EntityUid? Source = null;
  16. }
  17. }