Files
space-station-14/Content.Server/Botany/Components/ConsumeExudeGasGrowthComponent.cs
2025-12-12 23:05:58 +03:00

22 lines
617 B
C#

using Content.Shared.Atmos;
namespace Content.Server.Botany.Components;
/// <summary>
/// Data for gas to consume/exude on plant growth.
/// </summary>
[RegisterComponent]
[DataDefinition]
public sealed partial class ConsumeExudeGasGrowthComponent : Component
{
/// <summary>
/// Dictionary of gases and their consumption rates per growth tick.
/// </summary>
[DataField] public Dictionary<Gas, float> ConsumeGasses = new();
/// <summary>
/// Dictionary of gases and their exude rates per growth tick.
/// </summary>
[DataField] public Dictionary<Gas, float> ExudeGasses = new();
}