Files
tbd-station-14/Content.Server/Lathe/Components/LatheProducingComponent.cs
2022-10-30 18:12:11 +11:00

22 lines
534 B
C#

namespace Content.Server.Lathe.Components;
/// <summary>
/// For EntityQuery to keep track of which lathes are producing
/// </summary>
[RegisterComponent]
public sealed 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;
}