Files
crystall-punk-14/Content.Server/_CP14/Farming/Components/CP14SoilComponent.cs

14 lines
393 B
C#
Raw Permalink Normal View History

namespace Content.Server._CP14.Farming.Components;
/// <summary>
/// a component that provides a link to a liquid storage that can be used by the plant
/// </summary>
[RegisterComponent, Access(typeof(CP14FarmingSystem))]
public sealed partial class CP14SoilComponent : Component
{
[DataField(required: true)]
public string Solution = string.Empty;
public EntityUid? PlantUid;
}