6
StarHorizon_Public/Content.Server/Lathe/Components/LatheProducingComponent.cs
2026-01-24 12:49:55 +03:00

22 lines
542 B
C#

namespace Content.Server.Lathe.Components;
/// <summary>
/// For EntityQuery to keep track of which lathes are producing
/// </summary>
[RegisterComponent]
public sealed partial class LatheProducingComponent : Component
{
/// <summary>
/// The time at which production began
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public TimeSpan StartTime;
/// <summary>
/// How long it takes to produce the recipe.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public TimeSpan ProductionLength;
}