This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
voxel-test/gen.h
2024-07-18 11:06:32 -04:00

10 lines
No EOL
257 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, int val);
struct chunk gen_chunk(int x, int y, int z, int ci, int h);
void gen_init();
void gen_free();
void gen_save(struct chunk chunk);
#endif