Files
crystall-punk-14/Content.Server/Construction/Components/MachineComponent.cs

18 lines
472 B
C#
Raw Permalink Normal View History

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;
2024-06-05 16:23:23 -04:00
namespace Content.Server.Construction.Components;
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!;
}