2023-03-10 16:41:22 +11:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Procedural;
|
|
|
|
|
|
|
|
|
|
[Prototype("dungeonPreset")]
|
2023-11-01 19:56:23 -07:00
|
|
|
public sealed partial class DungeonPresetPrototype : IPrototype
|
2023-03-10 16:41:22 +11:00
|
|
|
{
|
|
|
|
|
[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();
|
|
|
|
|
}
|