Files
tbd-station-14/Content.Shared/BarSign/BarSignPrototype.cs
2022-12-20 14:25:34 -08:00

24 lines
675 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared.BarSign
{
[Prototype("barSign")]
public sealed class BarSignPrototype : IPrototype
{
[ViewVariables]
[IdDataFieldAttribute]
public string ID { get; } = default!;
[DataField("icon")] public string Icon { get; private set; } = string.Empty;
[DataField("name")] public string Name { get; set; } = "";
[DataField("description")] public string Description { get; set; } = "";
[DataField("renameArea")]
public bool RenameArea { get; private set; } = true;
[DataField("hidden")]
public bool Hidden { get; private set; }
}
}