diff options
Diffstat (limited to 'src/entities/soldato.h')
-rw-r--r-- | src/entities/soldato.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/entities/soldato.h b/src/entities/soldato.h index 6992e00..5123aee 100644 --- a/src/entities/soldato.h +++ b/src/entities/soldato.h @@ -1,9 +1,14 @@ #include "gameCommon.h" #include "entity.h" +#include "PID.h" #ifndef SOLDATO_H #define SOLDATO_H +typedef struct Soldato { + PID speedPID; +} Soldato; + void initSoldato(Entity * entity, Game * game); void closeSoldato(Entity * entity); void updateSoldato(Game * game, Entity * entity); |