basin/include/basin/worldgen.h

12 lines
295 B
C

#ifndef BASIN_WORLDGEN_H
#define BASIN_WORLDGEN_H
#include <basin/world.h>
#include <basin/chunk.h>
struct chunk* worldgen_gen_chunk_standard(struct world* world, struct chunk* chunk);
struct chunk* worldgen_gen_chunk(struct world* world, struct chunk* chunk);
#endif /* BASIN_WORLDGEN_H */