mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
22 lines
617 B
C#
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();
|
|
}
|