11 lines
357 B
C#
11 lines
357 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Bed.Cryostorage;
|
|
|
|
/// <summary>
|
|
/// Serves as a whitelist that allows an entity with this component to enter cryostorage.
|
|
/// It will also require MindContainerComponent.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class CanEnterCryostorageComponent : Component { }
|