| 1234567891011121314151617 |
- using Robust.Shared.Prototypes;
- namespace Content.Shared.Procedural;
- [Prototype]
- public sealed partial class DungeonRoomPackPrototype : IPrototype
- {
- [IdDataField]
- public string ID { get; private set; } = string.Empty;
- /// <summary>
- /// Used to associate the room pack with other room packs with the same dimensions.
- /// </summary>
- [DataField("size", required: true)] public Vector2i Size;
- [DataField("rooms", required: true)] public List<Box2i> Rooms = new();
- }
|