2022-04-23 22:27:19 -04:00
|
|
|
namespace Content.Server.Bible.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 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.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class FamiliarComponent : Component
|
2022-04-23 22:27:19 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The entity this familiar was summoned from.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public EntityUid? Source = null;
|
|
|
|
|
}
|
|
|
|
|
}
|