aboutsummaryrefslogtreecommitdiff
path: root/src/enemies/crab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/enemies/crab.h')
-rw-r--r--src/enemies/crab.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/enemies/crab.h b/src/enemies/crab.h
new file mode 100644
index 0000000..15e2b59
--- /dev/null
+++ b/src/enemies/crab.h
@@ -0,0 +1,30 @@
+#ifndef CRAB_H
+#define CRAB_H
+
+#include "../collision.h"
+
+typedef struct {
+ int id;
+ int hp, invincible;
+ double x, y;
+ double hsp, vsp;
+ double imageIndex;
+ int state, timer, counter;
+
+ Mask mask;
+} Crab;
+
+void createCrab(int x, int y);
+
+typedef struct {
+ int id;
+ double x, y;
+ double angle;
+ double imageIndex;
+
+ Mask mask;
+} Electricity;
+
+void createElectricity(int x, int y, double angle, int minid);
+
+#endif \ No newline at end of file