LatheProducingComponent.cs 542 B

123456789101112131415161718192021
  1. namespace Content.Server.Lathe.Components;
  2. /// <summary>
  3. /// For EntityQuery to keep track of which lathes are producing
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class LatheProducingComponent : Component
  7. {
  8. /// <summary>
  9. /// The time at which production began
  10. /// </summary>
  11. [ViewVariables(VVAccess.ReadWrite)]
  12. public TimeSpan StartTime;
  13. /// <summary>
  14. /// How long it takes to produce the recipe.
  15. /// </summary>
  16. [ViewVariables(VVAccess.ReadWrite)]
  17. public TimeSpan ProductionLength;
  18. }