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 #include "RocketRacer.h"
OmarAlebiary 6:958376d55d70 2
OmarAlebiary 6:958376d55d70 3
OmarAlebiary 6:958376d55d70 4
OmarAlebiary 6:958376d55d70 5 void RocketRacer::init(N5110 &lcd){
OmarAlebiary 6:958376d55d70 6 lcd.clear();
OmarAlebiary 6:958376d55d70 7 lcd.drawRect(0,0,55,48,FILL_TRANSPARENT);
OmarAlebiary 6:958376d55d70 8 lcd.refresh();
OmarAlebiary 6:958376d55d70 9 }