voxel-test/noise.h
2024-07-17 20:17:49 -04:00

7 lines
No EOL
147 B
C

#ifndef V_NOISE_H
#define V_NOISE_H
#include "cubes.h"
#include <math.h>
struct chunk noise_chunk(struct chunk chunk, int x, int y, int z);
#endif