11 lines
314 B
C#
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;
|
|
}
|