AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

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

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sillevl 14:e0bfee0a5e66 1 #include "ObjectiveFactory.h"
sillevl 14:e0bfee0a5e66 2 #include "WaitForKeyObjective.h"
sillevl 14:e0bfee0a5e66 3
sillevl 14:e0bfee0a5e66 4 Objective* ObjectiveFactory::create(Game* game, int choice){
sillevl 14:e0bfee0a5e66 5 return new WaitForKeyObjective(game);
sillevl 14:e0bfee0a5e66 6 }