ELEC2645 (2016/17) / Mbed 2 deprecated 2645_Project_el15as

Dependencies:   mbed

Revision:
4:1f7f32f3e017
Child:
5:158e2951654b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Animation/Animation.h	Mon Apr 24 22:32:40 2017 +0000
@@ -0,0 +1,26 @@
+#ifndef ANIMATION_H
+#define ANIMATION_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+class Animation
+{
+public:
+
+    Animation();
+    ~Animation();
+
+    void spawn(N5110 &lcd, intVector2D starting_position);
+    void death(N5110 &lcd, intVector2D position, int frame);
+    void finish(N5110 &lcd, intVector2D position);
+
+    int spawnCycle;
+
+private:
+
+
+};
+#endif
+