namespace Content.Shared._CP14.UniqueLoot; /// /// The appearance of an entity with this component will remove all other entities with the same component and key inside, ensuring the uniqueness of the entity. /// [RegisterComponent] public sealed partial class CP14SingletonComponent : Component { [DataField(required: true)] public string Key = string.Empty; }