Files
tbd-station-14/Content.Shared/Tag/TagComponentState.cs
2021-07-16 17:37:09 -07:00

18 lines
348 B
C#

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