6
2025-08-05 10:00:54 +03:00

16 lines
517 B
C#

using Content.Server.StationEvents.Events;
using Content.Shared.Storage;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.StationEvents.Components;
[RegisterComponent, Access(typeof(ImmovableRodRule))]
public sealed partial class ImmovableRodRuleComponent : Component
{
/// List of possible rods and spawn probabilities.
/// </summary>
[DataField]
public List<EntitySpawnEntry> RodPrototypes = new();
}