Yiu Fai Kwok / Mbed 2 deprecated el17yfk

Dependencies:   mbed FXOS8700CQ mbed-rtos

Revision:
21:704d938acf5d
Child:
25:31111e6e13ad
diff -r 50ad2dad310d -r 704d938acf5d Game_three/Game_three.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Game_three/Game_three.h	Sun Apr 28 18:04:23 2019 +0000
@@ -0,0 +1,36 @@
+/** Game Three Class
+* @brief This class is the game engine for the third mini-game
+* @version 1.0
+* @author Yiu Fai Kwok
+* @date 22 April, 2019
+*/
+#ifndef GAME_THREE_H
+#define GAME_THREE_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+#include "Score.h"
+#include "Book.h"
+#include "Message.h"
+
+class Game_three
+{
+
+public:
+
+    /** Constructor */
+    Game_three();
+    /** Deconstructor */
+    ~Game_three();
+
+    void init(int speed, int cha, int r);
+    void draw(N5110 &lcd, int cha);    
+    
+private:
+
+    void background(N5110 &lcd);
+
+};
+
+#endif
\ No newline at end of file