2022-10-15 23:25:41 -07:00
|
|
|
using System.Threading;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Botany
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Anything that can be used to cross-pollinate plants.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class BotanySwabComponent : Component
|
2022-10-15 23:25:41 -07:00
|
|
|
{
|
|
|
|
|
[DataField("swabDelay")]
|
|
|
|
|
public float SwabDelay = 2f;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// SeedData from the first plant that got swabbed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public SeedData? SeedData;
|
|
|
|
|
}
|
|
|
|
|
}
|