Jahanzeb Ahmed Khan 201375614

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers functions.h Source File

functions.h

00001 #ifndef FUNCTIONS_H
00002 #define FUNCTIONS_H
00003 
00004 #include "mbed.h"
00005 #include "Gamepad.h"
00006 #include "N5110.h"
00007 #include "body.h"
00008 #include "food.h"
00009 
00010 class Functions
00011 {
00012     
00013 public:
00014     /**constructor*/
00015     Functions();
00016     
00017     /**destructor*/
00018     ~Functions();
00019     
00020     void output_score(N5110 &lcd, Gamepad &pad, Body &body, Food &food);
00021     
00022 };
00023 
00024 #endif
00025