12 lines
303 B
C#
12 lines
303 B
C#
|
|
using Content.Shared.Weather;
|
||
|
|
using Robust.Shared.Prototypes;
|
||
|
|
|
||
|
|
namespace Content.Server._CP14.GameTicking.Rules.Components;
|
||
|
|
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed partial class CP14WeatherRuleComponent : Component
|
||
|
|
{
|
||
|
|
[DataField(required: true)]
|
||
|
|
public ProtoId<WeatherPrototype> Weather = default!;
|
||
|
|
}
|