AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GameFactory.h Source File

GameFactory.h

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