Daniel Nguyen

Dependencies:   4DGL-uLCD-SE mbed

Revision:
0:7d7f6032c719
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/AlienMoo.h	Thu Nov 02 19:15:07 2017 +0000
@@ -0,0 +1,26 @@
+#ifndef ALIENMOO_H_
+#define ALIENMOO_H_
+#include <iostream>
+#include "ScreenAliens.h"
+#include "uLCD_4DGL.h"
+
+extern uLCD_4DGL uLCD;
+class AlienMoo : public ScreenAliens
+{
+
+    private:
+        int change;
+    
+    public:
+
+        AlienMoo(int x, int y);
+
+        ~AlienMoo();
+
+        virtual void draw();
+        
+        virtual void update();
+        
+};
+
+#endif
\ No newline at end of file