AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Committer:
sillevl
Date:
Thu Feb 09 12:28:56 2017 +0000
Revision:
27:f29805113454
Parent:
25:a26b2ec5ab72
ARCHIVE WIP, not working (crashes, cause unknown)

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 25:a26b2ec5ab72 11 void buttonEvent(char c);
sillevl 13:ece97a1108cc 12
sillevl 13:ece97a1108cc 13 };
sillevl 13:ece97a1108cc 14
sillevl 13:ece97a1108cc 15
sillevl 13:ece97a1108cc 16 #endif