MachineComponent.cs 472 B

1234567891011121314151617
  1. using Content.Shared.Construction.Components;
  2. using Robust.Shared.Containers;
  3. using Robust.Shared.Prototypes;
  4. namespace Content.Server.Construction.Components;
  5. [RegisterComponent]
  6. public sealed partial class MachineComponent : Component
  7. {
  8. [DataField]
  9. public EntProtoId<MachineBoardComponent>? Board { get; private set; }
  10. [ViewVariables]
  11. public Container BoardContainer = default!;
  12. [ViewVariables]
  13. public Container PartContainer = default!;
  14. }