Files
tbd-station-14/Content.Server/Lathe/Components/LatheInsertingComponent.cs
2022-08-03 17:38:56 -07:00

16 lines
430 B
C#

namespace Content.Server.Lathe.Components
{
/// <summary>
/// For EntityQuery to keep track of which lathes are inserting
/// <summary>
[RegisterComponent]
public sealed class LatheInsertingComponent : Component
{
/// <summary>
/// Remaining insertion time, in seconds.
/// </summary>
[DataField("timeRemaining", required: true)]
public float TimeRemaining;
}
}