14 lines
407 B
C#
14 lines
407 B
C#
namespace Content.Server.Bed.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed class StasisBedComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// What the metabolic update rate will be multiplied by (higher = slower metabolism)
|
|
/// </summary>
|
|
[DataField("multiplier", required: true)]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float Multiplier = 10f;
|
|
}
|
|
}
|