find/generator.h

#ifndef GENERATOR_H
#define GENERATOR_H

#include <SDL.h>

#include "world.h"

void generate_chunk(world *w, chunk *c);

#endif