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

Score/Score.h

Committer:
yfkwok
Date:
2019-04-10
Revision:
6:9104692d6c8c
Parent:
5:bc0691d02fd5

File content as of revision 6:9104692d6c8c:

#ifndef SCORE_H
#define SCORE_H

#include "Gamepad.h"
#include "mbed.h"
#include "Notes.h"
#include "N5110.h"
#include "Squirtle.h"
#include "Charmander.h"

class Score
{
public:
    Score();
    ~Score();
    void title_music(Gamepad &pad);
    void level_up(Gamepad &pad);
    void congrats(Gamepad &pad);
    void coin(Gamepad &pad);
    void evolution_music(Gamepad &pad, N5110 &lcd, int cha, int year);
    void congrats(Gamepad &pad, N5110 &lcd, int cha, int year);
    void draw(N5110 &lcd, int cha, int year, int x, int y);
    void draw_cong(N5110 &lcd, int cha, int year);
    void win(Gamepad &pad);
    void exam_intro(Gamepad &pad);
    void gym(Gamepad &pad, bool state);
    
private:
    Squirtle _s1;
    Charmander _c1;
};
#endif