Files
wwdpublic/Content.Shared/Procedural/DungeonGenerators/FillGridDunGen.cs
Nemanja 998a72b9be Mining Asteroid Treasure Vaults (#31638)
add interior rooms to the vgroid

(cherry picked from commit a9d93e18c8a808d06a4a47ef6cfaa19d5eb06a14)
2025-07-19 15:40:18 +10:00

21 lines
493 B
C#

using Content.Shared.Maps;
using Robust.Shared.Prototypes;
namespace Content.Shared.Procedural.DungeonGenerators;
/// <summary>
/// Fills unreserved tiles with the specified entity prototype.
/// </summary>
/// <remarks>
/// DungeonData keys are:
/// - Fill
/// </remarks>
public sealed partial class FillGridDunGen : IDunGenLayer
{
/// <summary>
/// Tiles the fill can occur on.
/// </summary>
[DataField]
public HashSet<ProtoId<ContentTileDefinition>>? AllowedTiles;
}