Ladder for level maze

This commit is contained in:
Lucastaa
2026-05-03 06:49:11 +07:00
parent 5b30f92622
commit eac87bdd03
12 changed files with 822 additions and 5 deletions

View File

@@ -9,8 +9,9 @@ namespace Hallucinate.GameSetup.Maze
/// </summary>
public class MazeGrid
{
public int Width { get; }
public int Depth { get; }
public int Width { get; private set; }
public int Depth { get; private set; }
public int Level { get; set; }
private readonly MazeCellType[,] _cells;