yet another API cleanup

This commit is contained in:
onezplpl 2024-07-17 19:54:19 -04:00
parent 2008f70983
commit b6b3483a39
No known key found for this signature in database
GPG key ID: 7EC026A136F9EEC3
9 changed files with 134 additions and 114 deletions

8
gen.h
View file

@ -2,8 +2,8 @@
#define V_GEN_H
#include "cubes.h"
int cube_exists(int x, int y, int z, struct chunk dat, int ci);
struct chunk fetch_chunk(int x, int y, int z, int ci, int h);
void purge_chunks(int ci);
void free_chunks();
int gen_cube(int x, int y, int z, struct chunk dat, int ci);
struct chunk gen_chunk(int x, int y, int z, int ci, int h);
void gen_init();
void gen_free();
#endif