Doxygen comments added

Dependencies:   mbed Gamepad N5110

FlappyBirdEngine/FlappyBirdEngine.h

Committer:
rafeh
Date:
2019-05-06
Revision:
7:05f433e196d6
Child:
8:d91564c0f337

File content as of revision 7:05f433e196d6:

#ifndef FLAPPYBIRDENGINE_H
#define FLAPPYBIRDENGINE_H

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

class FlappyBirdEngine {
    
    public:
    
    void get_score(int score);
    void display_score(N5110 &lcd, Gamepad &pad);
    bool check_for_highscore(int highscore);
    void update_highscore(int highscore);
    
    private:
    
    int _score;
    int _highscore;
   
    
    
    
    
    };









#endif