Files
tbd-station-14/Content.Shared/Procedural/DungeonRoomPackPrototype.cs
Tayrtahn 86aa82f2b6 Cleanup: Remove redundant prototype name specifications (#35793)
* Remove redundant prototype name specifications

* These can stay
2025-03-19 19:30:31 +01:00

18 lines
494 B
C#

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();
}