Files
tbd-station-14/Content.Server/BarSign/BarSignComponent.cs
2022-05-13 17:59:03 +10:00

11 lines
236 B
C#

namespace Content.Server.BarSign
{
[RegisterComponent]
public sealed class BarSignComponent : Component
{
[DataField("current")]
[ViewVariables(VVAccess.ReadOnly)]
public string? CurrentSign;
}
}