Files
wwdpublic/Content.Shared/Construction/Components/MachinePartComponent.cs
2025-07-12 03:03:26 +10:00

16 lines
394 B
C#

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<MachinePartPrototype> PartType;
[DataField]
public int Rating = 1;
}