AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ObjectiveFactory.cpp Source File

ObjectiveFactory.cpp

00001 #include "ObjectiveFactory.h"
00002 #include "WaitForKeyObjective.h"
00003 
00004 Objective* ObjectiveFactory::create(Game* game, int choice){
00005     return new WaitForKeyObjective(game);
00006 }