AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

objectives/ObjectiveFactory.cpp

Committer:
sillevl
Date:
2015-05-23
Revision:
14:e0bfee0a5e66

File content as of revision 14:e0bfee0a5e66:

#include "ObjectiveFactory.h"
#include "WaitForKeyObjective.h"

Objective* ObjectiveFactory::create(Game* game, int choice){
    return new WaitForKeyObjective(game);
}