aboutsummaryrefslogtreecommitdiff
path: root/src/enemies/podoboo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/enemies/podoboo.h')
-rw-r--r--src/enemies/podoboo.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/enemies/podoboo.h b/src/enemies/podoboo.h
new file mode 100644
index 0000000..eec8ba6
--- /dev/null
+++ b/src/enemies/podoboo.h
@@ -0,0 +1,20 @@
+#ifndef PODOBOO_H
+#define PODOBOO_H
+
+typedef struct {
+ int id;
+ double x, y;
+ int ystart;
+ int hp;
+ int blink;
+ int rot;
+ double yoffset;
+ double vsp, grav;
+ double jumpheight;
+ double imageIndex;
+ int timer, state;
+} Podoboo;
+
+void createPodoboo(int x, int y, int offset, int height);
+
+#endif \ No newline at end of file