namespace Content.Server.Lathe.Components;
///
/// For EntityQuery to keep track of which lathes are producing
///
[RegisterComponent]
public sealed class LatheProducingComponent : Component
{
///
/// How much production time has passed, in seconds.
///
[ViewVariables(VVAccess.ReadWrite)]
public float AccumulatedTime;
}