Toluwalakin Owoso 201231164

Dependencies:   mbed ELEC2645_Project_el18to

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CCar.h Source File

CCar.h

00001 #ifndef CCAR_H
00002 #define CCAR_H
00003 
00004 #include "mbed.h"
00005 #include "N5110.h"
00006 #include "Gamepad.h"
00007 
00008 class CCar
00009 {
00010 public:
00011     CCar();
00012     ~CCar();
00013     void draw(N5110 &lcd);
00014     void update(Gamepad &pad);
00015 };
00016 
00017 #endif