2021-02-08 22:46:28 +01:00
|
|
|
using System;
|
2021-06-09 22:19:39 +02:00
|
|
|
using Robust.Shared.GameObjects;
|
2021-02-08 22:46:28 +01:00
|
|
|
using Robust.Shared.Serialization;
|
2021-02-04 11:04:19 +01:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Shared.Tag
|
2021-02-04 11:04:19 +01:00
|
|
|
{
|
2021-02-08 22:46:28 +01:00
|
|
|
[Serializable, NetSerializable]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class TagComponentState : ComponentState
|
2021-02-04 11:04:19 +01:00
|
|
|
{
|
2021-07-12 01:32:10 -07:00
|
|
|
public TagComponentState(string[] tags)
|
2021-02-04 11:04:19 +01:00
|
|
|
{
|
|
|
|
|
Tags = tags;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string[] Tags { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|