Salvage dungeons (#14520)
This commit is contained in:
10
Content.Shared/Procedural/DungeonPath.cs
Normal file
10
Content.Shared/Procedural/DungeonPath.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Content.Shared.Procedural;
|
||||
|
||||
/// <summary>
|
||||
/// Connects 2 dungeon rooms.
|
||||
/// </summary>
|
||||
public sealed record DungeonPath(string Tile, string Wall, HashSet<Vector2i> Tiles)
|
||||
{
|
||||
public string Tile = Tile;
|
||||
public string Wall = Wall;
|
||||
}
|
||||
Reference in New Issue
Block a user