Files
OldThink/Content.Server/Access/Components/AgentIDCardComponent.cs

16 lines
533 B
C#
Raw Permalink Normal View History

using Content.Shared.StatusIcon;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
2022-04-15 17:15:25 -04:00
namespace Content.Server.Access.Components
{
[RegisterComponent]
public sealed partial class AgentIDCardComponent : Component
{
/// <summary>
/// Set of job icons that the agent ID card can show.
/// </summary>
[DataField("icons", customTypeSerializer: typeof(PrototypeIdHashSetSerializer<StatusIconPrototype>))]
public HashSet<string> Icons = new();
}
2022-04-15 17:15:25 -04:00
}