22 lines
542 B
C#
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;
|
|
}
|
|
|