Files
tbd-station-14/Content.Server/Botany/Components/SeedExtractorComponent.cs
2022-02-06 13:14:41 -07:00

17 lines
460 B
C#

using Content.Server.Botany.Systems;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Botany.Components;
[RegisterComponent]
[Friend(typeof(SeedExtractorSystem))]
public sealed class SeedExtractorComponent : Component
{
// TODO: Upgradeable machines.
[DataField("minSeeds")] public int MinSeeds = 1;
[DataField("maxSeeds")] public int MaxSeeds = 4;
}