Files
wwdpublic/Content.Shared/ShortConstruction/ShortConstructionComponent.cs
2024-11-21 17:49:04 +07:00

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();
}