X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_gen.h;h=c6ffb9227f8f35eb87dc44f4d76883a1aff8f09a;hb=14851c4c820eb07a0db0ec0366a70bdd6518c331;hp=ba4adc5b6bfa0a6ad525861fa7dd3e1bd4835f6d;hpb=5f6a4f9df6c8accc89f1920bfe9ace3cbac4c4b6;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_gen.h b/world_gen.h index ba4adc5..c6ffb92 100644 --- a/world_gen.h +++ b/world_gen.h @@ -5,15 +5,11 @@ * create geometry, apply procedural stuff and save that image to files etc. */ -#ifndef WORLD_GEN_H -#define WORLD_GEN_H - +#pragma once #include "world.h" -static void world_init_blank( world_instance *world ); -static void world_gen_load_surfaces( world_instance *world ); -static void world_gen_generate_meshes( world_instance *world ); -static void world_gen_compute_light_indices( world_instance *world ); -static void async_world_postprocess( void *payload, u32 _size ); - -#endif /* WORLD_GEN_H */ +void world_init_blank( world_instance *world ); +void world_gen_load_surfaces( world_instance *world ); +void world_gen_generate_meshes( world_instance *world ); +void world_gen_compute_light_indices( world_instance *world ); +void async_world_postprocess( void *payload, u32 _size );