X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;ds=sidebyside;f=entity.c;h=44b00df235f0f1d9e8ddc4d60f17390abd109c32;hb=1fd91b77f23ce1593037e01b9abb62859545b400;hp=287016a60a15fb28433bb48123e3daded8420fd9;hpb=4eb81766e4e7c54599b057ebf57b7fab01cd0726;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/entity.c b/entity.c index 287016a..44b00df 100644 --- a/entity.c +++ b/entity.c @@ -10,6 +10,10 @@ #include "ent_challenge.c" #include "ent_relay.c" #include "ent_route.c" +#include "ent_portal.c" +#include "ent_miniworld.c" +#include "ent_region.c" +#include "ent_traffic.c" typedef void (*fn_entity_call_handler)( world_instance *, ent_call *); @@ -25,7 +29,9 @@ static void entity_call( world_instance *world, ent_call *call ){ [k_ent_gate] = ent_gate_call, [k_ent_relay] = ent_relay_call, [k_ent_challenge] = ent_challenge_call, - [k_ent_route] = ent_route_call + [k_ent_route] = ent_route_call, + [k_ent_miniworld] = ent_miniworld_call, + [k_ent_region] = ent_region_call }; if( type >= vg_list_size(table) ){