aboutsummaryrefslogtreecommitdiff
path: root/animation.c
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-05-05 13:44:23 +1000
committerquou <quou@disroot.org>2023-05-05 13:44:23 +1000
commitfb104368dd33b66e0575dcc0327cbae7046a4e1e (patch)
tree67a1a66182aa8417b8fbb431576528c28f4a5ab8 /animation.c
parent280552fa4750b5dac9243782f9c0a7e0b7eea6f8 (diff)
Add killing enemies.
Diffstat (limited to 'animation.c')
-rw-r--r--animation.c10
1 files changed, 10 insertions, 0 deletions
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) {