voxel-test/gen.h
2024-07-17 19:54:19 -04:00

9 lines
No EOL
213 B
C

#ifndef V_GEN_H
#define V_GEN_H
#include "cubes.h"
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