15 lines
388 B
C#
15 lines
388 B
C#
using Content.Server.Body.Systems;
|
|
|
|
namespace Content.Server.Body.Components
|
|
{
|
|
[RegisterComponent, Access(typeof(BrainSystem))]
|
|
public sealed partial class BrainComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Shitmed Change: Is this brain currently controlling the entity?
|
|
/// </summary>
|
|
[DataField]
|
|
public bool Active = true;
|
|
}
|
|
}
|