mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
18 lines
463 B
C#
18 lines
463 B
C#
namespace Content.Shared.Procedural;
|
|
|
|
public sealed class Dungeon
|
|
{
|
|
public readonly List<DungeonRoom> Rooms = new();
|
|
|
|
/// <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();
|
|
}
|