Files
OldThink/Content.Shared/Tag/TagComponentState.cs

16 lines
308 B
C#
Raw Normal View History

using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Tag
{
[Serializable, NetSerializable]
public sealed class TagComponentState : ComponentState
{
public TagComponentState(string[] tags)
{
Tags = tags;
}
public string[] Tags { get; }
}
}