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