MiddleConnectionDunGen.cs 514 B

12345678910111213141516171819
  1. namespace Content.Shared.Procedural.PostGeneration;
  2. /// <summary>
  3. /// Places the specified entities on the middle connections between rooms
  4. /// </summary>
  5. public sealed partial class MiddleConnectionDunGen : IDunGenLayer
  6. {
  7. /// <summary>
  8. /// How much overlap there needs to be between 2 rooms exactly.
  9. /// </summary>
  10. [DataField]
  11. public int OverlapCount = -1;
  12. /// <summary>
  13. /// How many connections to spawn between rooms.
  14. /// </summary>
  15. [DataField]
  16. public int Count = 1;
  17. }