mission is possible 2
[carveJwlIkooP6JGAAIwe30JlM.git] / world_load.h
1 #ifndef WORLD_LOAD_H
2 #define WORLD_LOAD_H
3
4 #include <time.h>
5
6 #include "world.h"
7 #include "world_gen.h"
8 #include "world_routes.h"
9 #include "world_entity.h"
10 #include "world_volumes.h"
11
12 struct{
13 char name[64];
14
15 enum world_load_type{
16 k_world_load_type_local,
17 k_world_load_type_workshop /* unimplemented */
18 }
19 location;
20 int generate_point_cloud;
21 u32 world_index;
22 }
23 static world_loader;
24
25 static world_instance *world_loading_instance(void);
26 static void world_free( world_instance *world );
27 static int world_freeable( world_instance *world );
28
29 #endif /* WORLD_LOAD_H */