Files
tbd-station-14/Content.Shared/Procedural/DungeonPresetPrototype.cs

16 lines
408 B
C#

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