AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ObjectiveFactory.h Source File

ObjectiveFactory.h

00001 #ifndef GAMEFACTORY_H
00002 #define GAMEFACTORY_H
00003 
00004 #include "../games/Game.h"
00005 #include "Objective.h"
00006 
00007 class ObjectiveFactory{
00008     public:
00009     static Objective* create(Game* game, int choice); //factory method
00010 
00011 };
00012 
00013 
00014 #endif