CompostComponent.cs 256 B

1234567891011
  1. namespace Content.Shared.Farming;
  2. [RegisterComponent]
  3. public sealed partial class CompostComponent : Component
  4. {
  5. /// <summary>
  6. /// Amount of nutrition added to PlantHolder
  7. /// </summary>
  8. [DataField]
  9. public float NutritionValue = 50f;
  10. }