aboutsummaryrefslogtreecommitdiff
path: root/src/enemies/knight.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/enemies/knight.h')
-rw-r--r--src/enemies/knight.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/enemies/knight.h b/src/enemies/knight.h
new file mode 100644
index 0000000..a709fc8
--- /dev/null
+++ b/src/enemies/knight.h
@@ -0,0 +1,23 @@
+#ifndef KNIGHT_H
+#define KNIGHT_H
+
+#include "../collision.h"
+
+typedef struct {
+ int id, type;
+ double x, y,
+ vsp, grav;
+ int dir, state, timer;
+ double imageIndex;
+ int hp, invincible;
+ int shieldhit;
+
+ Mask mask;
+} Knight;
+
+void createKnight(int x, int y, int type);
+
+void knightStep(Knight* k);
+void knightDraw(Knight* k);
+
+#endif \ No newline at end of file