aboutsummaryrefslogtreecommitdiff
path: root/fx.h
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 /fx.h
parent280552fa4750b5dac9243782f9c0a7e0b7eea6f8 (diff)
Add killing enemies.
Diffstat (limited to 'fx.h')
-rw-r--r--fx.h14
1 files changed, 14 insertions, 0 deletions
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