Sentry turrets - Part 7: Electronics and construction graphs (#35236)

* Initial commit

* Fixing merge conflict

* Updated for deployment

* Whitespace fixes

* Linter fixes

* Test fail fix

* Fixed test failure

* Add separate command circuitboards

* Addressed review comments
This commit is contained in:
chromiumboy
2025-08-29 07:10:47 -05:00
committed by GitHub
parent 8739271e43
commit 65bffbebf1
9 changed files with 204 additions and 28 deletions

View File

@@ -0,0 +1,16 @@
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;
}