| 123456789101112131415 |
- 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();
- }
|