1
0

BrainComponent.cs 388 B

1234567891011121314
  1. using Content.Server.Body.Systems;
  2. namespace Content.Server.Body.Components
  3. {
  4. [RegisterComponent, Access(typeof(BrainSystem))]
  5. public sealed partial class BrainComponent : Component
  6. {
  7. /// <summary>
  8. /// Shitmed Change: Is this brain currently controlling the entity?
  9. /// </summary>
  10. [DataField]
  11. public bool Active = true;
  12. }
  13. }