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_two/Game_two.h

Committer:
yfkwok
Date:
2019-04-17
Revision:
13:02002658e718
Child:
14:abe64fe0b6a5

File content as of revision 13:02002658e718:

#ifndef GAME_TWO_H
#define GAME_TWO_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Score.h"
#include "FXOS8700CQ.h"

class Game_two
{

public:
    Game_two();
    ~Game_two();
    void init(int speed, int cha, int r);
    
private:

    Score music;
    FXOS8700CQ device(I2C* sda, I2C* scl);
    
    int _speed;
    int _cha;
    int _rand;
    int _count;
    int _alt;

};

#endif