1
0

ActiveCrematoriumComponent.cs 287 B

1234567891011
  1. namespace Content.Server.Morgue.Components;
  2. /// <summary>
  3. /// used to track actively cooking crematoriums
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class ActiveCrematoriumComponent : Component
  7. {
  8. [ViewVariables(VVAccess.ReadWrite)]
  9. public float Accumulator = 0;
  10. }