mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
16 lines
394 B
C#
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;
|
|
}
|