From 77a06748f9f394486cad833e2ca351e8dbcc7361 Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Sun, 16 Jul 2023 21:55:38 -0600 Subject: More following shit --- src/entities/soldato.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/entities/soldato.h') 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); -- cgit v1.2.3