Files
crystall-punk-14/Content.Shared/_CP14/WeatherEffect/CP14WeatherRefillableComponent.cs
Ed 26d81b684b Weather refill (#1175)
* refillable by weather

* fix
2025-04-13 01:01:22 +03:00

12 lines
327 B
C#

namespace Content.Shared._CP14.WeatherEffect;
/// <summary>
/// Allows weather to fill said solution with liquids if said entity is outdoors
/// </summary>
[RegisterComponent]
public sealed partial class CP14WeatherRefillableComponent : Component
{
[DataField(required: true)]
public string Solution = string.Empty;
}