contains my game for the embedded systems project 2645

Dependencies:   mbed FXOS8700CQQQ

Committer:
OmarAlebiary
Date:
Tue Mar 19 14:26:11 2019 +0000
Revision:
6:958376d55d70
Child:
7:7e50cac5e0f4
added the rocket racer class

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 6:958376d55d70 15 void init(N5110 &lcd);
OmarAlebiary 6:958376d55d70 16
OmarAlebiary 6:958376d55d70 17
OmarAlebiary 6:958376d55d70 18
OmarAlebiary 6:958376d55d70 19 };
OmarAlebiary 6:958376d55d70 20
OmarAlebiary 6:958376d55d70 21 #endif