JunctionDunGen.cs 404 B

123456789101112131415161718
  1. namespace Content.Shared.Procedural.PostGeneration;
  2. /// <summary>
  3. /// Places the specified entities at junction areas.
  4. /// </summary>
  5. /// <remarks>
  6. /// Dungeon data keys are:
  7. /// - Entrance
  8. /// - FallbackTile
  9. /// </remarks>
  10. public sealed partial class JunctionDunGen : IDunGenLayer
  11. {
  12. /// <summary>
  13. /// Width to check for junctions.
  14. /// </summary>
  15. [DataField]
  16. public int Width = 3;
  17. }