* Generic offering window * More work * weh * Parity * Progression meter * magnet * rona * PG asteroid work * code red * Asteroid spawnings * clams * a * Marker fixes * More fixes * Workings of biome asteroids * A * Fix this loading code * a * Fix masking * weh * Fixes * Magnet claiming * toe * petogue * magnet * Bunch of fixes * Fix default * Fixes * asteroids * Fix offerings * Localisation and a bunch of fixes * a * Fixes * Preliminary draft * Announcement fixes * Fixes and bump spawn rate * Fix asteroid spawns and UI * More fixes * Expeditions fix * fix * Gravity * Fix announcement rounding * a * Offset tweak * sus * jankass * Fix merge
28 lines
610 B
C#
28 lines
610 B
C#
namespace Content.Shared.Procedural;
|
|
|
|
public sealed class Dungeon
|
|
{
|
|
public readonly List<DungeonRoom> Rooms;
|
|
|
|
/// <summary>
|
|
/// Hashset of the tiles across all rooms.
|
|
/// </summary>
|
|
public readonly HashSet<Vector2i> RoomTiles = new();
|
|
|
|
public readonly HashSet<Vector2i> RoomExteriorTiles = new();
|
|
|
|
public readonly HashSet<Vector2i> CorridorTiles = new();
|
|
|
|
public readonly HashSet<Vector2i> CorridorExteriorTiles = new();
|
|
|
|
public Dungeon()
|
|
{
|
|
Rooms = new List<DungeonRoom>();
|
|
}
|
|
|
|
public Dungeon(List<DungeonRoom> rooms)
|
|
{
|
|
Rooms = rooms;
|
|
}
|
|
}
|