6
StarHorizon_Public/Content.Shared/Containers/ExitContainerOnMoveComponent.cs
2026-01-13 18:31:02 +02:00

15 lines
423 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Containers;
/// <summary>
/// This is used for a container that is exited when the entity inside of it moves.
/// </summary>
[RegisterComponent, NetworkedComponent]
[Access(typeof(ExitContainerOnMoveSystem))]
public sealed partial class ExitContainerOnMoveComponent : Component
{
[DataField, ViewVariables(VVAccess.ReadWrite)]
public string ContainerId;
}