X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=entity.c;h=85557b1763f72d009bc2ce3327e8b9ac9e6e7e26;hb=2c91a71533b4ce86b9e7fd708420ae05c74d8f52;hp=21815f461973b2337c31da02df2622a7bc9dea42;hpb=22f62f001f21d1b91fefd9fc495c122d9ddf205a;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/entity.c b/entity.c index 21815f4..85557b1 100644 --- a/entity.c +++ b/entity.c @@ -9,6 +9,9 @@ #include "ent_objective.c" #include "ent_challenge.c" #include "ent_relay.c" +#include "ent_route.c" +#include "ent_portal.c" +#include "ent_miniworld.c" typedef void (*fn_entity_call_handler)( world_instance *, ent_call *); @@ -23,7 +26,9 @@ static void entity_call( world_instance *world, ent_call *call ){ [k_ent_ccmd] = ent_ccmd_call, [k_ent_gate] = ent_gate_call, [k_ent_relay] = ent_relay_call, - [k_ent_challenge] = ent_challenge_call + [k_ent_challenge] = ent_challenge_call, + [k_ent_route] = ent_route_call, + [k_ent_miniworld] = ent_miniworld_call }; if( type >= vg_list_size(table) ){