AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

objectives/WaitForKeyObjective.h

Committer:
sillevl
Date:
2015-05-24
Revision:
25:a26b2ec5ab72
Parent:
16:e8e96bf22df1

File content as of revision 25:a26b2ec5ab72:

#ifndef WAITFORKEYOBJECTIVE_H
#define WAITFORKEYOBJECTIVE_H

#include "Objective.h"

class WaitForKeyObjective : public Objective{
        
    public:
    WaitForKeyObjective(Game* game);
    virtual void run();
    void buttonEvent(char c);
    
};


#endif