Files
OldThink/Content.Server/Botany/Components/BotanySwabComponent.cs

20 lines
470 B
C#
Raw Normal View History

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]
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;
}
}