mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 22:49:01 +03:00
* Rip out remaining machine upgrades * eek (cherry picked from commit a9e89ab37221c4f5eff5a9e1d42e97c6f3e0753b)
13 lines
365 B
C#
13 lines
365 B
C#
namespace Content.Server.Bed.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class StasisBedComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// What the metabolic update rate will be multiplied by (higher = slower metabolism)
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float Multiplier = 10f;
|
|
}
|
|
}
|