Game codes for Pokemon Academy Yiu Fai Kwok - 201198802 I have read the University Regulations on Plagiarism and state that the work covered by this declaration is my own and does not contain any unacknowledged work from other sources.

Dependencies:   mbed FXOS8700CQ mbed-rtos

Game_three/Game_three.h

Committer:
yfkwok
Date:
2019-04-30
Revision:
26:c60becf3f840
Parent:
25:31111e6e13ad
Child:
27:4bcdfb212467

File content as of revision 26:c60becf3f840:

#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"

/** 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
*/

class Game_three
{

public:

    /** Constructor */
    Game_three();
    /** Deconstructor */
    ~Game_three();

    void init(int r);
    void draw(N5110 &lcd, int cha);    
    
private:

    void background(N5110 &lcd);

};

#endif