Files
crystall-punk-14/Content.Shared/Procedural/Dungeon.cs

18 lines
463 B
C#
Raw Normal View History

2023-03-10 16:41:22 +11:00
namespace Content.Shared.Procedural;
public sealed class Dungeon
{
2023-06-27 19:17:42 +10:00
public readonly List<DungeonRoom> Rooms = new();
2023-04-20 10:43:13 +10:00
/// <summary>
2023-06-27 19:17:42 +10:00
/// Hashset of the tiles across all rooms.
2023-04-20 10:43:13 +10:00
/// </summary>
2023-06-27 19:17:42 +10:00
public readonly HashSet<Vector2i> RoomTiles = new();
2023-04-20 10:43:13 +10:00
2023-06-27 19:17:42 +10:00
public readonly HashSet<Vector2i> RoomExteriorTiles = new();
2023-04-20 10:43:13 +10:00
2023-06-27 19:17:42 +10:00
public readonly HashSet<Vector2i> CorridorTiles = new();
2023-03-10 16:41:22 +11:00
2023-06-27 19:17:42 +10:00
public readonly HashSet<Vector2i> CorridorExteriorTiles = new();
2023-03-10 16:41:22 +11:00
}