Files
wwdpublic/Content.Shared/Procedural/DungeonPresetPrototype.cs
Tayrtahn 7f3b436dc1 Fix prototypes so they pass analyzer checks (#35435)
(cherry picked from commit 6f925dd61083a3fd377e5d12549ac908985e855f)
2025-09-27 13:54:06 +03:00

16 lines
408 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared.Procedural;
[Prototype("dungeonPreset")]
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();
}