PloughToolComponent.cs 335 B

12345678910111213
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Farming;
  3. [RegisterComponent]
  4. public sealed partial class PloughToolComponent : Component
  5. {
  6. /// <summary>
  7. /// Timer to complete ploughing action
  8. /// </summary>
  9. [DataField, ViewVariables(VVAccess.ReadWrite)]
  10. public TimeSpan Delay = TimeSpan.FromSeconds(8);
  11. }