library for SnekGame

Dependents:   2645Game_el15bb

Revision:
1:8d4639c9d1b0
Parent:
0:337503f9282c
--- a/Food.h	Fri May 05 11:55:49 2017 +0000
+++ b/Food.h	Fri May 05 15:19:10 2017 +0000
@@ -6,36 +6,30 @@
 #include "N5110.h"
 #include "Gamepad.h"
 //#include "Snake.h"
+
+/************************Structs************************/
 struct posXY{
     int x;
     int y;
     
     };
-class Food
-{
+/************************Class Def************************/   
+class Food{
     
     
-    
+/************************Public Vars************************/  
     public:
     
-    Food();
-    ~Food();
-    void init();
-    void draw();
-    void respawn();
+            Food();
+            ~Food();
+            void init();
+            void draw(N5110 &lcd);
+            void respawn();
+            posXY returnPos();
     
-    
+/************************Private Vars************************/      
     private:    
     
     
-    
-    
 };
-
-
-
-
-
-
-
 #endif
\ No newline at end of file