From f368f2811a3f8ca0a4b9572b300358bd17d8dac1 Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Wed, 12 Jul 2023 02:33:30 -0600 Subject: Maresciallo added --- src/entity.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/entity.c') 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() { -- cgit v1.2.3