AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

objectives/ObjectiveFactory.h

Committer:
sillevl
Date:
2017-02-09
Revision:
27:f29805113454
Parent:
14:e0bfee0a5e66

File content as of revision 27:f29805113454:

#ifndef GAMEFACTORY_H
#define GAMEFACTORY_H

#include "../games/Game.h"
#include "Objective.h"

class ObjectiveFactory{
    public:
    static Objective* create(Game* game, int choice); //factory method

};


#endif