2021-10-16 21:34:05 +01:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
2021-11-11 02:15:23 +13:00
|
|
|
namespace Content.Server.Labels.Components
|
2021-10-16 21:34:05 +01:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class LabelComponent : Component
|
2021-10-16 21:34:05 +01:00
|
|
|
{
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
[DataField("currentLabel")]
|
|
|
|
|
public string? CurrentLabel { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? OriginalName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|