1
0

BotanySwabComponent.cs 470 B

12345678910111213141516171819
  1. using System.Threading;
  2. namespace Content.Server.Botany
  3. {
  4. /// <summary>
  5. /// Anything that can be used to cross-pollinate plants.
  6. /// </summary>
  7. [RegisterComponent]
  8. public sealed partial class BotanySwabComponent : Component
  9. {
  10. [DataField("swabDelay")]
  11. public float SwabDelay = 2f;
  12. /// <summary>
  13. /// SeedData from the first plant that got swabbed.
  14. /// </summary>
  15. public SeedData? SeedData;
  16. }
  17. }