Files
tbd-station-14/Content.Shared/BarSign/BarSignPrototype.cs
Nemanja 162913ccd0 Selectable Bar Signs (#29068)
* make bar sign selectable

* ajcm strongest soldier

* AJCM comes down hard for round 2

* good shit

* ok ballin

* bless'ed be the webedit
2024-07-01 02:20:57 +10:00

24 lines
577 B
C#

using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared.BarSign;
[Prototype]
public sealed partial class BarSignPrototype : IPrototype
{
[IdDataField, ViewVariables]
public string ID { get; private set; } = default!;
[DataField(required: true)]
public SpriteSpecifier Icon { get; private set; } = default!;
[DataField]
public LocId Name { get; private set; } = "barsign-component-name";
[DataField]
public LocId Description { get; private set; }
[DataField]
public bool Hidden { get; private set; }
}