Files
tbd-station-14/Content.Server/StationEvents/Components/VentCrittersRuleComponent.cs

18 lines
519 B
C#

using Content.Server.StationEvents.Events;
using Content.Shared.Storage;
namespace Content.Server.StationEvents.Components;
[RegisterComponent, Access(typeof(VentCrittersRule))]
public sealed partial class VentCrittersRuleComponent : Component
{
[DataField("entries")]
public List<EntitySpawnEntry> Entries = new();
/// <summary>
/// At least one special entry is guaranteed to spawn
/// </summary>
[DataField("specialEntries")]
public List<EntitySpawnEntry> SpecialEntries = new();
}