1

Dependencies:   mbed Gamepad N5110

Revision:
3:7b28047013d2
Child:
6:1ad8c738b9b7
diff -r 1234b0a1a51d -r 7b28047013d2 Food/Food.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Food/Food.h	Thu May 02 06:20:20 2019 +0000
@@ -0,0 +1,35 @@
+#ifndef FOOD_H
+#define FOOD_H
+
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+//#include "Snake.h"
+
+/************************Structs************************/
+struct Foodpos{
+    int x;
+    int y;
+    
+    };
+/************************Class Def************************/   
+class Food{
+    
+    
+/************************Public Vars************************/  
+    public:
+    
+            Food();
+            ~Food();
+            void init();
+            void drawfood(N5110 &lcd);
+            void createfood();
+            Foodpos returnPos();
+    
+/************************Private Vars************************/      
+    private:    
+    
+    
+};
+#endif
\ No newline at end of file