18 lines
472 B
C#
18 lines
472 B
C#
using Content.Shared.Construction.Components;
|
|
using Robust.Shared.Containers;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.Construction.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class MachineComponent : Component
|
|
{
|
|
[DataField]
|
|
public EntProtoId<MachineBoardComponent>? Board { get; private set; }
|
|
|
|
[ViewVariables]
|
|
public Container BoardContainer = default!;
|
|
[ViewVariables]
|
|
public Container PartContainer = default!;
|
|
}
|