using System.Threading;
namespace Content.Server.Botany
{
///
/// Anything that can be used to cross-pollinate plants.
///
[RegisterComponent]
public sealed partial class BotanySwabComponent : Component
{
[DataField("swabDelay")]
public float SwabDelay = 2f;
///
/// SeedData from the first plant that got swabbed.
///
public SeedData? SeedData;
}
}