mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* Cryogenic sleep units * pause map support * no more body deletion * Cryogenic Storage Units * boowomp * no more emag, no more dropping present people (cherry picked from commit 736b9dd7df6e35f07fed88686c7c863ac61af846)
15 lines
423 B
C#
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;
|
|
}
|