From fb104368dd33b66e0575dcc0327cbae7046a4e1e Mon Sep 17 00:00:00 2001 From: quou Date: Fri, 5 May 2023 13:44:23 +1000 Subject: Add killing enemies. --- animation.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'animation.c') diff --git a/animation.c b/animation.c index 6dbb08f..6cf2584 100644 --- a/animation.c +++ b/animation.c @@ -43,6 +43,16 @@ static const Animation animations[] = { 1, 1 }, + /* animation_enemy_bullet_explode */ + { + { + { 24, 0, 7, 7 }, + { 31, 0, 7, 7 }, + { 38, 0, 7, 7 } + }, + 3, + 5 + } }; const Animation* get_animation(Animation_ID id) { -- cgit v1.2.3-54-g00ecf