2022-04-17 03:34:14 -04:00
|
|
|
namespace Content.Server.Lathe.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// For EntityQuery to keep track of which lathes are inserting
|
|
|
|
|
/// <summary>
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed class LatheInsertingComponent : Component
|
2022-08-04 12:38:56 +12:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remaining insertion time, in seconds.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField("timeRemaining", required: true)]
|
|
|
|
|
public float TimeRemaining;
|
|
|
|
|
}
|
2022-04-17 03:34:14 -04:00
|
|
|
}
|