2024-06-05 16:23:23 -04:00
|
|
|
|
using Content.Shared.Construction.Components;
|
|
|
|
|
|
using Robust.Shared.Containers;
|
2022-02-03 10:04:46 +11:00
|
|
|
|
using Robust.Shared.Prototypes;
|
2020-12-03 22:49:00 +01:00
|
|
|
|
|
2024-06-05 16:23:23 -04:00
|
|
|
|
namespace Content.Server.Construction.Components;
|
2020-12-03 22:49:00 +01:00
|
|
|
|
|
2024-06-05 16:23:23 -04:00
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class MachineComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataField]
|
|
|
|
|
|
public EntProtoId<MachineBoardComponent>? Board { get; private set; }
|
2022-10-22 18:38:57 -04:00
|
|
|
|
|
2024-06-05 16:23:23 -04:00
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public Container BoardContainer = default!;
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public Container PartContainer = default!;
|
2020-12-03 22:49:00 +01:00
|
|
|
|
}
|