AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers WaitForKeyObjective.h Source File

WaitForKeyObjective.h

00001 #ifndef WAITFORKEYOBJECTIVE_H
00002 #define WAITFORKEYOBJECTIVE_H
00003 
00004 #include "Objective.h"
00005 
00006 class WaitForKeyObjective : public Objective{
00007         
00008     public:
00009     WaitForKeyObjective(Game* game);
00010     virtual void run();
00011     void buttonEvent(char c);
00012     
00013 };
00014 
00015 
00016 #endif