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