2025-05-18 03:10:30 +10:00
|
|
|
using Content.Shared.EntityTable;
|
|
|
|
|
using Content.Shared.Maps;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2024-07-03 22:23:11 +10:00
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// If internal areas are found will try to generate windows.
|
|
|
|
|
/// </summary>
|
2025-05-18 03:10:30 +10:00
|
|
|
public sealed partial class InternalWindowDunGen : IDunGenLayer
|
|
|
|
|
{
|
|
|
|
|
[DataField(required: true)]
|
|
|
|
|
public ProtoId<ContentTileDefinition> Tile;
|
|
|
|
|
|
|
|
|
|
[DataField(required: true)]
|
|
|
|
|
public ProtoId<EntityTablePrototype> Contents;
|
|
|
|
|
}
|