AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

games/GameFactory.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 "../board/Board.h"
#include "Game.h"

class GameFactory{
    public:
    static Game* create(Board* board, int choice); //factory method

};


#endif