AirsoftTimer software based on mbed
Dependencies: mbed TextLCD keypad
Diff: objectives/Objective.h
- Revision:
- 25:a26b2ec5ab72
- Parent:
- 24:f0989eca7469
- Child:
- 27:f29805113454
--- a/objectives/Objective.h Sun May 24 20:50:17 2015 +0000 +++ b/objectives/Objective.h Sun May 24 21:09:30 2015 +0000 @@ -12,17 +12,18 @@ class Objective /*: public ButtonListener*/{ - enum Status { WAITING, ACTIVE, COMPLETED }; public: Objective(Game* game); + + enum Status { WAITING, ACTIVE, COMPLETED }; Status getStatus(); void start(); virtual void run() = 0; void complete(); - protected: + protected: Game* game; LCD* lcd;