ImmovableRodRuleComponent.cs 517 B

123456789101112131415
  1. using Content.Server.StationEvents.Events;
  2. using Content.Shared.Storage;
  3. using Robust.Shared.Prototypes;
  4. using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
  5. namespace Content.Server.StationEvents.Components;
  6. [RegisterComponent, Access(typeof(ImmovableRodRule))]
  7. public sealed partial class ImmovableRodRuleComponent : Component
  8. {
  9. /// List of possible rods and spawn probabilities.
  10. /// </summary>
  11. [DataField]
  12. public List<EntitySpawnEntry> RodPrototypes = new();
  13. }