using Content.Shared.Construction.Prototypes; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; namespace Content.Shared.Construction.Components; [RegisterComponent, NetworkedComponent] public sealed partial class MachinePartComponent : Component { [DataField(required: true)] public ProtoId PartType; [DataField] public int Rating = 1; }