Files
tbd-station-14/Content.Shared/BarSign/BarSignComponent.cs

11 lines
314 B
C#

using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared.BarSign;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)]
public sealed partial class BarSignComponent : Component
{
[DataField, AutoNetworkedField] public ProtoId<BarSignPrototype>? Current;
}