build: CMake and public headers

This commit is contained in:
Hernâni Marques 2026-07-11 23:18:44 +02:00
parent 1455cf7ac9
commit 87d99f7007
6 changed files with 107 additions and 0 deletions

6
include/ok_map.h Normal file
View file

@ -0,0 +1,6 @@
#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