Files
2025-06-15 21:34:33 +03:00

19 lines
460 B
C#

using Content.Shared.Destructible.Thresholds;
using Content.Shared.Weather;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.WeatherControl;
[DataRecord, Serializable]
public sealed class CP14WeatherData
{
[DataField(required: true)]
public ProtoId<WeatherPrototype>? Visuals { get; set; } = null;
[DataField]
public MinMax Duration { get; set; } = new(120, 600);
[DataField]
public float Weight { get; set; } = 1f;
}