AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

objectives/WaitForKeyObjective.h

Committer:
sillevl
Date:
2017-02-09
Revision:
27:f29805113454
Parent:
25:a26b2ec5ab72

File content as of revision 27:f29805113454:

#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