diff options
Diffstat (limited to 'src/entities/antifaShip.h')
-rw-r--r-- | src/entities/antifaShip.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/entities/antifaShip.h b/src/entities/antifaShip.h index a1b97d2..61d843c 100644 --- a/src/entities/antifaShip.h +++ b/src/entities/antifaShip.h @@ -4,9 +4,14 @@ #ifndef ANTIFA_SHIP_H #define ANTIFA_SHIP_H +typedef struct AntifaShip { + Vector2 lastMouse; + float forwardSpeed; +} AntifaShip; + void initAntifaShip(Entity * entity, Game * game); void closeAntifaShip(Entity * entity); -void updateAntifaShip(Game * game, Entity * entity, EntityId id); -void drawAntifaShip(Game * game, Entity * entity, EntityId id); +void updateAntifaShip(Game * game, Entity * entity); +void drawAntifaShip(Game * game, Entity * entity); #endif |