Snake vs Block Game to be run upon K64F.

Dependencies:   mbed

Revision:
60:d3a9e0e4a0de
Child:
78:10e5cc013806
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MenuClasses/Tutorial/Tutorial.h	Mon Apr 29 14:40:42 2019 +0000
@@ -0,0 +1,30 @@
+#ifndef TUTORIAL_H
+#define TUTORIAL_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+class Tutorial
+{
+    public:
+    
+    Tutorial();
+    ~Tutorial();
+    
+    /** Implement Tutorial
+    *
+    *   This function is used to configure Tutorial.
+    */
+    
+    void Implement(N5110 &lcd, Gamepad &pad);
+    
+    /** game Pad
+    *
+    *   This function introduces the gamepad to the user.
+    */
+
+    void gamePad(N5110 &lcd, Gamepad &pad);
+    
+};
+#endif
\ No newline at end of file