From c4ac81cffcf925963acb0c02584ab22626427a73 Mon Sep 17 00:00:00 2001 From: quou Date: Thu, 4 May 2023 10:15:19 +1000 Subject: Add an animation system. --- main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'main.c') diff --git a/main.c b/main.c index b106978..7cfaf83 100644 --- a/main.c +++ b/main.c @@ -22,6 +22,7 @@ void on_init(int argc, char** argv) { void on_update() { renderer_begin_frame(); update_player(&world.player, &world); + animation_system(&world); sprite_system(&world); } -- cgit v1.2.3-54-g00ecf