Files
tbd-station-14/Content.Shared/Procedural/DungeonPresetPrototype.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

16 lines
391 B
C#

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