ELEC2645 (2019/20) / Mbed 2 deprecated ELEC2645_Project_ll17lrc_v2

Dependencies:   mbed

StartMenu/StartMenu.h

Committer:
ll17lrc
Date:
2020-05-21
Revision:
10:df6a496270be
Parent:
4:a9d5fca3b7ba
Child:
11:7a4abe731f9c

File content as of revision 10:df6a496270be:

#ifndef STARTMENU_H
#define STARTMENU_H

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

/** Ball Class
@author Dr Craig A. Evans, University of Leeds
@brief Controls the ball in the Pong game 
@date Febraury 2017
*/ 
class StartMenu
{

public:
    StartMenu();
    ~StartMenu();
    void complete(Gamepad &pad,N5110 &lcd);
    /// accessors and mutators

    
private:

    void level(Gamepad &pad,N5110 &lcd);
    int selector;
    int arrow;
    
};
#endif