ELEC2645 (2019/20) / Mbed 2 deprecated ELEC2645_Project_ll17lrc_v2

Dependencies:   mbed

Committer:
ll17lrc
Date:
Mon May 25 16:40:59 2020 +0000
Revision:
11:7a4abe731f9c
Child:
13:fd290d2fd917
Removed level select.; Added level 6

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ll17lrc 11:7a4abe731f9c 1 #ifndef FIVE_H
ll17lrc 11:7a4abe731f9c 2 #define FIVE_H
ll17lrc 11:7a4abe731f9c 3
ll17lrc 11:7a4abe731f9c 4 #include "mbed.h"
ll17lrc 11:7a4abe731f9c 5 #include "N5110.h"
ll17lrc 11:7a4abe731f9c 6 #include "Gamepad.h"
ll17lrc 11:7a4abe731f9c 7
ll17lrc 11:7a4abe731f9c 8
ll17lrc 11:7a4abe731f9c 9 /** Ball Class
ll17lrc 11:7a4abe731f9c 10 @author Dr Craig A. Evans, University of Leeds
ll17lrc 11:7a4abe731f9c 11 @brief Controls the ball in the Pong game
ll17lrc 11:7a4abe731f9c 12 @date Febraury 2017
ll17lrc 11:7a4abe731f9c 13 */
ll17lrc 11:7a4abe731f9c 14 class Five
ll17lrc 11:7a4abe731f9c 15 {
ll17lrc 11:7a4abe731f9c 16
ll17lrc 11:7a4abe731f9c 17 public:
ll17lrc 11:7a4abe731f9c 18 Five();
ll17lrc 11:7a4abe731f9c 19 ~Five();
ll17lrc 11:7a4abe731f9c 20 void draw(N5110 &lcd);
ll17lrc 11:7a4abe731f9c 21 /// accessors and mutators
ll17lrc 11:7a4abe731f9c 22
ll17lrc 11:7a4abe731f9c 23 private:
ll17lrc 11:7a4abe731f9c 24
ll17lrc 11:7a4abe731f9c 25
ll17lrc 11:7a4abe731f9c 26 };
ll17lrc 11:7a4abe731f9c 27 #endif