using Robust.Shared.GameStates; namespace Content.Shared.Trigger.Components.Triggers; /// /// Triggers an entity when it gets removed from a container. /// The user is the owner of the container the entity is being removed from. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class TriggerOnGotRemovedFromContainerComponent : BaseTriggerOnXComponent { /// /// The container to the entity has to be removed from. /// Null will allow all containers. /// [DataField, AutoNetworkedField] public string? ContainerId; }