Project Submission (late)

Dependencies:   mbed

Revision:
0:72f372170a73
Child:
3:83e79d31930c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Drawer/Drawer.h	Fri May 10 08:07:10 2019 +0000
@@ -0,0 +1,27 @@
+#ifndef DRAWER_H
+#define DRAWER_H
+
+#include "Player.h"
+#include "N5110.h"
+
+class Drawer {
+    
+    public:
+        Drawer(Player* player, N5110* screenPtr);
+        void drawBranch1(Vector2Di loc);
+        void drawBranch2(Vector2Di loc);
+        void drawBranch3(Vector2Di loc);
+        void drawBranch4(Vector2Di loc);
+        void drawBranch5(Vector2Di loc);
+        void drawBranch6(Vector2Di loc);
+        void drawScreen();
+        
+    
+        Player* player;
+        N5110* lcd;
+    
+    
+    
+};
+
+#endif // DRAWER_H
\ No newline at end of file