class in FinixMakesGames.MazeGenerator.Core / Inherits from:Grid
A class that represents a rectangular Maze in it's raw data form without any graphics.
Type | Result |
QuadGrid | Creates a new grid with the given row and collumn components, creates a new collection of cells and assings it's neighbors. |
Property | Description |
cells | A double Array of QuadCell that stores all Cells present in this grid . |
distances | A class Distances variable that can store a collection of paths. Null by default. |
Method | Description |
RandomCell | Returns a random Cell from the Grid. |
Size | Returns the number of total Cells present in this Grid. |
DeadEnds | Returns a list of Cells that have only one link to another cell. |
ToString | Represents the maze in form of a string. Usefull for debugging. |