2023-11-28 23:35:42 +00:00
|
|
|
|
using Robust.Shared.GameStates;
|
2024-06-02 11:11:19 +10:00
|
|
|
|
using Robust.Shared.Prototypes;
|
2021-02-02 02:11:04 +01:00
|
|
|
|
|
2024-06-02 11:11:19 +10:00
|
|
|
|
namespace Content.Shared.Tag;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(TagSystem))]
|
|
|
|
|
|
public sealed partial class TagComponent : Component
|
2021-02-02 02:11:04 +01:00
|
|
|
|
{
|
2024-06-02 11:11:19 +10:00
|
|
|
|
[DataField, ViewVariables, AutoNetworkedField]
|
|
|
|
|
|
public HashSet<ProtoId<TagPrototype>> Tags = new();
|
2021-02-02 02:11:04 +01:00
|
|
|
|
}
|