6
StarHorizon_Public/Content.Shared/Bed/Cryostorage/CanEnterCryostorageComponent.cs
2026-01-18 12:53:36 +03:00

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 { }