DiggingComponent.cs 289 B

12345678910111213
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Farming;
  3. [RegisterComponent]
  4. public sealed partial class DiggingComponent : Component
  5. {
  6. /// <summary>
  7. /// Time in seconds to complete the digging action
  8. /// </summary>
  9. [DataField]
  10. public float DigTime = 6.0f;
  11. }