X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=entity.c;h=59e9219abcfe58a7baaab9a574b19c5b83091b16;hb=23ba25574349652d86979fc787ec4b0214001333;hp=85557b1763f72d009bc2ce3327e8b9ac9e6e7e26;hpb=810a45773a2ade051c5ffb50321dab89bd2a45e9;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/entity.c b/entity.c index 85557b1..59e9219 100644 --- a/entity.c +++ b/entity.c @@ -12,6 +12,7 @@ #include "ent_route.c" #include "ent_portal.c" #include "ent_miniworld.c" +#include "ent_region.c" typedef void (*fn_entity_call_handler)( world_instance *, ent_call *); @@ -28,7 +29,8 @@ static void entity_call( world_instance *world, ent_call *call ){ [k_ent_relay] = ent_relay_call, [k_ent_challenge] = ent_challenge_call, [k_ent_route] = ent_route_call, - [k_ent_miniworld] = ent_miniworld_call + [k_ent_miniworld] = ent_miniworld_call, + [k_ent_region] = ent_region_call }; if( type >= vg_list_size(table) ){