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