mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 04:10:55 +01:00
12 lines
287 B
C#
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;
|
|
}
|