AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Committer:
sillevl
Date:
Sat May 23 17:55:38 2015 +0000
Revision:
15:78116b7254d5
Parent:
14:e0bfee0a5e66
Child:
16:e8e96bf22df1
Added keyEvent to Objectives

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sillevl 13:ece97a1108cc 1 #ifndef WAITFORKEYOBJECTIVE_H
sillevl 13:ece97a1108cc 2 #define WAITFORKEYOBJECTIVE_H
sillevl 13:ece97a1108cc 3
sillevl 13:ece97a1108cc 4 #include "Objective.h"
sillevl 13:ece97a1108cc 5
sillevl 13:ece97a1108cc 6 class WaitForKeyObjective : public Objective{
sillevl 13:ece97a1108cc 7
sillevl 13:ece97a1108cc 8 public:
sillevl 14:e0bfee0a5e66 9 WaitForKeyObjective(Game* game);
sillevl 14:e0bfee0a5e66 10 virtual void run();
sillevl 15:78116b7254d5 11
sillevl 15:78116b7254d5 12 protected:
sillevl 15:78116b7254d5 13 uint32_t keyEvent(uint32_t key);
sillevl 13:ece97a1108cc 14
sillevl 13:ece97a1108cc 15
sillevl 13:ece97a1108cc 16 };
sillevl 13:ece97a1108cc 17
sillevl 13:ece97a1108cc 18
sillevl 13:ece97a1108cc 19 #endif