ExteriorDunGen.cs 449 B

12345678910111213
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Procedural.DungeonGenerators;
  3. /// <summary>
  4. /// Generates the specified config on an exterior tile of the attached dungeon.
  5. /// Useful if you're using <see cref="GroupDunGen"/> or otherwise want a dungeon on the outside of a grid.
  6. /// </summary>
  7. public sealed partial class ExteriorDunGen : IDunGenLayer
  8. {
  9. [DataField(required: true)]
  10. public ProtoId<DungeonConfigPrototype> Proto;
  11. }