From fb104368dd33b66e0575dcc0327cbae7046a4e1e Mon Sep 17 00:00:00 2001 From: quou Date: Fri, 5 May 2023 13:44:23 +1000 Subject: Add killing enemies. --- fx.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 fx.h (limited to 'fx.h') diff --git a/fx.h b/fx.h new file mode 100644 index 0000000..acbde30 --- /dev/null +++ b/fx.h @@ -0,0 +1,14 @@ +#ifndef fx_h +#define fx_h + +#include "animation.h" + +struct World; + +int new_enemy_bullet_explosion( + struct World* world, + int x, + int y +); + +#endif -- cgit v1.2.3-54-g00ecf