Files
crystall-punk-14/Content.Shared/Construction/Components/ElectronicsBoardComponent.cs

17 lines
455 B
C#
Raw Normal View History

using Robust.Shared.Prototypes;
namespace Content.Shared.Construction.Components;
/// <summary>
/// Used in construction graphs for building wall-mounted electronic devices.
/// </summary>
[RegisterComponent]
public sealed partial class ElectronicsBoardComponent : Component
{
/// <summary>
/// The device that is produced when the construction is completed.
/// </summary>
[DataField(required: true)]
public EntProtoId Prototype;
}