6 lines
162 B
C
6 lines
162 B
C
#ifndef OK_MAP_H
|
|
#define OK_MAP_H
|
|
#include "ok_types.h"
|
|
void ok_map_init(OkWorld *w, uint32_t seed);
|
|
bool ok_map_walkable(const OkWorld *w, int x, int y);
|
|
#endif
|