build system revision
[carveJwlIkooP6JGAAIwe30JlM.git] / entity.c
index 85557b1763f72d009bc2ce3327e8b9ac9e6e7e26..ce6d98eb76ecd959f572160c8f6c08f14b66d928 100644 (file)
--- a/entity.c
+++ b/entity.c
 #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"
+#include "ent_glider.c"
 
 typedef void (*fn_entity_call_handler)( world_instance *, ent_call *);
 
@@ -28,7 +30,9 @@ 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,
+      [k_ent_glider]    = ent_glider_call
    };
 
    if( type >= vg_list_size(table) ){