aboutsummaryrefslogtreecommitdiff
path: root/src/entities/soldato.c
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-09 00:53:10 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-09 00:53:10 -0600
commit3f0be672f9c5a07a98be0dc703b95f1bbe73f33e (patch)
treeaeb7776878e3460f7ba1f33cf2c0d195eb45f2c5 /src/entities/soldato.c
parentb92adb44b618db0272819cb77e5727441c566838 (diff)
Mouse control working
Diffstat (limited to 'src/entities/soldato.c')
-rw-r--r--src/entities/soldato.c4
1 files changed, 2 insertions, 2 deletions
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);
}