diff options
Diffstat (limited to 'src/entity.c')
-rw-r--r-- | src/entity.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/entity.c b/src/entity.c index f4066b5..956c40f 100644 --- a/src/entity.c +++ b/src/entity.c @@ -1,11 +1,17 @@ #include "entity.h" #include "entities/antifaShip.h" #include "entities/soldato.h" +#include "entities/caporale.h" +#include "entities/sergente.h" +#include "entities/maresciallo.h" // This fucker is used for creating entities. const EntityTypeInfo entityTypeInfo[ENTITY_TYPE_COUNT] = { (EntityTypeInfo){initAntifaShip, closeAntifaShip, updateAntifaShip, drawAntifaShip}, - (EntityTypeInfo){initSoldato, closeSoldato, updateSoldato, drawSoldato} + (EntityTypeInfo){initSoldato, closeSoldato, updateSoldato, drawSoldato}, + (EntityTypeInfo){initCaporale, closeCaporale, updateCaporale, drawCaporale}, + (EntityTypeInfo){initSergente, closeSergente, updateSergente, drawSergente}, + (EntityTypeInfo){initMaresciallo, closeMaresciallo, updateMaresciallo, drawMaresciallo} }; EntityVelocity entityVelocityIdentity() { |