Files
tbd-station-14/Content.Shared/Tag/TagComponent.cs

14 lines
473 B
C#

using Robust.Shared.Serialization;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
namespace Content.Shared.Tag
{
[RegisterComponent, Friend(typeof(TagSystem))]
public sealed class TagComponent : Component, ISerializationHooks
{
[ViewVariables]
[DataField("tags", customTypeSerializer: typeof(PrototypeIdHashSetSerializer<TagPrototype>))]
public readonly HashSet<string> Tags = new();
}
}