Files
crystall-punk-14/Content.Shared/_CP14/WeatherControl/CP14WeatherData.cs
Ed 3b0af98a2e Weather backend start (#407)
* DayCycke StartWithRandomEntry

* add weather rule

* fix

* yep, its work

* finalize weather

* fix again

* weather resprite
2024-09-01 15:22:16 +03:00

16 lines
389 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; }
[DataField]
public MinMax Duration { get; set; } = new(30, 300);
}