update helpers/location to 'frosted' ui
[carveJwlIkooP6JGAAIwe30JlM.git] / ent_miniworld.h
index 73d0c46d67d19b171b3c5b7c127629b8ad52f784..278cf75ec6eb50c2912e329b1df93ef9fb5ce313 100644 (file)
@@ -1,23 +1,18 @@
-#ifndef ENT_MINIWORLD_H
-#define ENT_MINIWORLD_H
-
+#pragma once
 #include "entity.h"
 
-struct {
+struct global_miniworld
+{
    ent_miniworld *active;
    int transition;
-   int mode;
    f32 t;
 
    m4x3f mmdl;
-   camera cam;
-
-   ent_spawn *dest_spawn;
+   vg_camera cam;
 }
-static global_miniworld;
-
-static void ent_miniworld_call( world_instance *world, ent_call *call );
-static void ent_miniworld_render( world_instance *host_world, camera *cam );
-static void ent_miniworld_goback(void);
+extern global_miniworld;
 
-#endif /* ENT_MINIWORLD_H */
+entity_call_result ent_miniworld_call( world_instance *world, ent_call *call );
+void ent_miniworld_render( world_instance *host_world, vg_camera *cam );
+void ent_miniworld_goback(void);
+void ent_miniworld_preupdate(void);