6 lines
147 B
C
6 lines
147 B
C
#ifndef OK_MAP_H
|
|
#define OK_MAP_H
|
|
#include "ok_types.h"
|
|
void ok_map_generate(OkMap *m);
|
|
bool ok_map_walkable(const OkMap *m, int x, int y);
|
|
#endif
|