AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

objectives/WaitForKeyObjective.h

Committer:
sillevl
Date:
2015-05-23
Revision:
15:78116b7254d5
Parent:
14:e0bfee0a5e66
Child:
16:e8e96bf22df1

File content as of revision 15:78116b7254d5:

#ifndef WAITFORKEYOBJECTIVE_H
#define WAITFORKEYOBJECTIVE_H

#include "Objective.h"

class WaitForKeyObjective : public Objective{
        
    public:
    WaitForKeyObjective(Game* game);
    virtual void run();
    
    protected:    
    uint32_t keyEvent(uint32_t key);

    
};


#endif