14 lines
393 B
C#
14 lines
393 B
C#
|
|
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;
|
||
|
|
}
|