From 3f0be672f9c5a07a98be0dc703b95f1bbe73f33e Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Sun, 9 Jul 2023 00:53:10 -0600 Subject: Mouse control working --- src/entities/soldato.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/entities/soldato.c') diff --git a/src/entities/soldato.c b/src/entities/soldato.c index c1903d4..4abe5af 100644 --- a/src/entities/soldato.c +++ b/src/entities/soldato.c @@ -9,10 +9,10 @@ void initSoldato(Entity * entity, Game * game) { void closeSoldato(Entity * entity) { } -void updateSoldato(Game * game, Entity * entity, EntityId id) { +void updateSoldato(Game * game, Entity * entity) { entityUpdateRotation(entity); } -void drawSoldato(Game * game, Entity * entity, EntityId id) { +void drawSoldato(Game * game, Entity * entity) { entityDraw(entity); } -- cgit v1.2.3