Files
tbd-station-14/Content.Shared/Bed/Cryostorage/CanEnterCryostorageComponent.cs
2024-08-06 21:00:15 +10: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 { }