X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_entity.h;h=c3af72a398d4e717bf986e81322aa9555645df73;hb=c77e15a8dc7b976371a473bc8794cb55601d82f6;hp=eca698ad8bfaa7db84bc2d813f7f883e997e2ae5;hpb=f014a592925b224f846d8adfc6559539fae1a096;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_entity.h b/world_entity.h index eca698a..c3af72a 100644 --- a/world_entity.h +++ b/world_entity.h @@ -4,12 +4,16 @@ #include "world.h" #include "entity.h" #include "bvh.h" +#include "save.h" +#include "vg/vg_msg.h" -VG_STATIC void world_gen_entities_init(void); +VG_STATIC void world_gen_entities_init( world_instance *world ); VG_STATIC ent_spawn *world_find_spawn_by_name( world_instance *world, const char *name ); VG_STATIC ent_spawn *world_find_closest_spawn( world_instance *world, v3f position ); +VG_STATIC void world_entity_start( world_instance *world, vg_msg *sav ); +VG_STATIC void world_entity_serialize( world_instance *world, vg_msg *sav ); VG_STATIC void ent_volume_call( world_instance *world, ent_call *call ); VG_STATIC void ent_audio_call( world_instance *world, ent_call *call );