using Robust.Shared.Prototypes; namespace Content.Shared.Procedural; [Prototype] public sealed partial class DungeonPresetPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; /// /// The room pack bounds we need to fill. /// [DataField("roomPacks", required: true)] public List RoomPacks = new(); }