Files
tbd-station-14/Content.Server/BarSign/BarSignComponent.cs
wrexbe 936c2f1d54 Refactored barsign (#5929)
* Refactored barsign

* Check barsign for signs of life.

* TryComp the sprite component

* TryGetBarSignPrototype
2022-01-01 17:45:52 +01:00

17 lines
403 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.BarSign
{
[RegisterComponent]
public class BarSignComponent : Component
{
public override string Name => "BarSign";
[DataField("current")]
[ViewVariables(VVAccess.ReadOnly)]
public string? CurrentSign;
}
}