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