X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=entity.c;h=ce6d98eb76ecd959f572160c8f6c08f14b66d928;hb=888e62fcd8f9777cee774fbb8fab2e52660303a7;hp=2ff0cab4f448241783850eb201a854560acd71a6;hpb=403bb2442600b86f50d842ec059eb3f54c8ca5ec;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/entity.c b/entity.c index 2ff0cab..ce6d98e 100644 --- a/entity.c +++ b/entity.c @@ -13,6 +13,7 @@ #include "ent_miniworld.c" #include "ent_region.c" #include "ent_traffic.c" +#include "ent_glider.c" typedef void (*fn_entity_call_handler)( world_instance *, ent_call *); @@ -30,7 +31,8 @@ static void entity_call( world_instance *world, ent_call *call ){ [k_ent_challenge] = ent_challenge_call, [k_ent_route] = ent_route_call, [k_ent_miniworld] = ent_miniworld_call, - [k_ent_region] = ent_region_call + [k_ent_region] = ent_region_call, + [k_ent_glider] = ent_glider_call }; if( type >= vg_list_size(table) ){