Files
tbd-station-14/Content.Shared/Tag/TagComponentState.cs
2022-02-16 18:23:23 +11:00

18 lines
355 B
C#

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.Tag
{
[Serializable, NetSerializable]
public sealed class TagComponentState : ComponentState
{
public TagComponentState(string[] tags)
{
Tags = tags;
}
public string[] Tags { get; }
}
}