1 2 3 4 5 6 7 8 9 10
#ifndef GENERATOR_H #define GENERATOR_H #include <SDL.h> #include "world.h" void generate_chunk(world *w, chunk *c); #endif