aboutsummaryrefslogtreecommitdiff
path: root/fx.h
diff options
context:
space:
mode:
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