forgot to lock!
[carveJwlIkooP6JGAAIwe30JlM.git] / ent_miniworld.h
1 #ifndef ENT_MINIWORLD_H
2 #define ENT_MINIWORLD_H
3
4 #include "entity.h"
5
6 struct {
7 ent_miniworld *active;
8 int transition;
9 int mode;
10 f32 t;
11
12 m4x3f mmdl;
13 camera cam;
14
15 ent_spawn *dest_spawn;
16 }
17 static global_miniworld;
18
19 static void ent_miniworld_call( world_instance *world, ent_call *call );
20 static void ent_miniworld_render( world_instance *host_world, camera *cam );
21 static void ent_miniworld_goback(void);
22
23 #endif /* ENT_MINIWORLD_H */