10 lines
159 B
C
10 lines
159 B
C
|
#ifndef __GENMAZE_H__
|
||
|
#define __GENMAZE_H__
|
||
|
|
||
|
#define MAZE_WALL_VERT 1
|
||
|
#define MAZE_WALL_HORZ 2
|
||
|
|
||
|
BOOL GenerateMaze(int width, int height, BYTE *walls);
|
||
|
|
||
|
#endif
|