Files
tbd-station-14/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs

12 lines
287 B
C#

namespace Content.Server.Morgue.Components;
/// <summary>
/// used to track actively cooking crematoriums
/// </summary>
[RegisterComponent]
public sealed partial class ActiveCrematoriumComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)]
public float Accumulator = 0;
}