X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=entity.c;h=f5e8004510d104c3eb9799b572a6e9c168cef7d6;hb=ca35eceae3abfcfb9ba266d6ea8e664bc06b0a3e;hp=1d91c2491a9032181a53189503bf5e30f158d515;hpb=872ad3e040f22df357929d3778a955ae8c4ac52b;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/entity.c b/entity.c index 1d91c24..f5e8004 100644 --- a/entity.c +++ b/entity.c @@ -1,8 +1,9 @@ #ifndef ENTITY_C #define ENTITY_C -#include "entity.h" #include "world.h" +#include "entity.h" +#include "world_entity.h" #include "ent_skateshop.c" @@ -16,6 +17,8 @@ VG_STATIC void entity_call( world_instance *world, ent_call *call ) ent_audio_call( world, call ); } else if( type == k_ent_skateshop ){ ent_skateshop_call( world, call ); + } else if( type == k_ent_ccmd ){ + ent_ccmd_call( world, call ); } }