blob: 972e43cd466aaa6c7ff7fa546b6347d2146bf038 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _MAPGEN_H_
#define _MAPGEN_H_
union st_field
{
int byte;
struct
{
int west;
int east;
int north;
int south;
}side;
};
void maze(void);
#endif
|