basic npc
[carveJwlIkooP6JGAAIwe30JlM.git] / world_gen.h
index ba4adc5b6bfa0a6ad525861fa7dd3e1bd4835f6d..c6ffb9227f8f35eb87dc44f4d76883a1aff8f09a 100644 (file)
@@ -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 );