mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
12 lines
315 B
C#
12 lines
315 B
C#
using Content.Shared.RadialSelector;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.ShortConstruction;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class ShortConstructionComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public List<RadialSelectorEntry> Entries = new();
|
|
}
|