contains my game for the embedded systems project 2645

Dependencies:   mbed FXOS8700CQQQ

Committer:
OmarAlebiary
Date:
Tue Mar 26 00:57:12 2019 +0000
Revision:
7:7e50cac5e0f4
Parent:
6:958376d55d70
Child:
8:b547037f42be
added methods for end of game and game display screen

Who changed what in which revision?

UserRevisionLine numberNew contents of line
OmarAlebiary 6:958376d55d70 1 #ifndef ROCKETRACER_H
OmarAlebiary 6:958376d55d70 2 #define ROCKETRACER_H
OmarAlebiary 6:958376d55d70 3
OmarAlebiary 6:958376d55d70 4 #include "mbed.h"
OmarAlebiary 6:958376d55d70 5 #include "N5110.h"
OmarAlebiary 6:958376d55d70 6 #include "Gamepad.h"
OmarAlebiary 6:958376d55d70 7
OmarAlebiary 6:958376d55d70 8
OmarAlebiary 6:958376d55d70 9
OmarAlebiary 6:958376d55d70 10
OmarAlebiary 6:958376d55d70 11 class RocketRacer{
OmarAlebiary 6:958376d55d70 12
OmarAlebiary 6:958376d55d70 13 public:
OmarAlebiary 6:958376d55d70 14
OmarAlebiary 7:7e50cac5e0f4 15 void MainGameDisplay(N5110 &lcd);
OmarAlebiary 7:7e50cac5e0f4 16 void EndGame(N5110 &lcd);
OmarAlebiary 6:958376d55d70 17
OmarAlebiary 6:958376d55d70 18
OmarAlebiary 6:958376d55d70 19
OmarAlebiary 6:958376d55d70 20 };
OmarAlebiary 6:958376d55d70 21
OmarAlebiary 6:958376d55d70 22 #endif