Re-organize all projects (#4166)
This commit is contained in:
19
Content.Shared/Tag/TagComponentState.cs
Normal file
19
Content.Shared/Tag/TagComponentState.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
using Content.Shared.NetIDs;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Tag
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public class TagComponentState : ComponentState
|
||||
{
|
||||
public TagComponentState(string[] tags) : base(ContentNetIDs.TAG)
|
||||
{
|
||||
Tags = tags;
|
||||
}
|
||||
|
||||
public string[] Tags { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user