using Content.Shared.Trigger.Systems; namespace Content.Shared.Trigger.Components.Conditions; /// /// Base class for components that add a condition to triggers. /// public abstract partial class BaseTriggerConditionComponent : Component { /// /// The keys that are checked for the condition. /// [DataField, AutoNetworkedField] public HashSet Keys = new() { TriggerSystem.DefaultTriggerKey }; }