2023-03-10 16:41:22 +11:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Procedural;
|
|
|
|
|
|
2025-03-19 14:30:31 -04:00
|
|
|
[Prototype]
|
2023-11-01 19:56:23 -07:00
|
|
|
public sealed partial class DungeonPresetPrototype : IPrototype
|
2023-03-10 16:41:22 +11:00
|
|
|
{
|
2025-02-23 23:21:59 -05:00
|
|
|
[IdDataField] public string ID { get; private set; } = default!;
|
2023-03-10 16:41:22 +11:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The room pack bounds we need to fill.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField("roomPacks", required: true)]
|
|
|
|
|
public List<Box2i> RoomPacks = new();
|
|
|
|
|
}
|