2020-08-22 22:29:20 +02:00
|
|
|
using System.Linq;
|
2021-06-09 22:19:39 +02:00
|
|
|
using Content.Server.Power.Components;
|
2020-04-23 00:58:43 +02:00
|
|
|
using Robust.Server.GameObjects;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.IoC;
|
|
|
|
|
using Robust.Shared.Localization;
|
|
|
|
|
using Robust.Shared.Log;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
using Robust.Shared.Random;
|
2021-03-05 01:08:38 +01:00
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
2020-04-23 00:58:43 +02:00
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.BarSign
|
2020-04-23 00:58:43 +02:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2021-07-23 04:42:39 +02:00
|
|
|
public class BarSignComponent : Component
|
2020-04-23 00:58:43 +02:00
|
|
|
{
|
|
|
|
|
public override string Name => "BarSign";
|
|
|
|
|
|
2021-07-23 04:42:39 +02:00
|
|
|
[DataField("current")] [ViewVariables(VVAccess.ReadOnly)]
|
|
|
|
|
public string? CurrentSign;
|
2020-04-23 00:58:43 +02:00
|
|
|
}
|
|
|
|
|
}
|