Dungeonator  1.0.0
a dungeon generator library
dead_ends.h
Go to the documentation of this file.
1 #ifndef DEAD_ENDS_H
2 #define DEAD_ENDS_H
3 
9 #include "direction.h"
10 #include "grid.h"
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif // __cplusplus
15 
21  void remove_dead_ends(Grid* grid);
22 
23 #ifdef __cplusplus
24 }
25 #endif // __cplusplus
26 
27 #endif // !DEAD_ENDS_H
void remove_dead_ends(Grid *grid)
Definition: dead_ends.c:3
declaration file for directions enum
declaration file for grid functions
Definition: grid.h:36