AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GameFactory.cpp Source File

GameFactory.cpp

00001 #include "GameFactory.h"
00002 #include "DummyGame.h"
00003 
00004 Game* GameFactory::create(Board* board, int choice){
00005     Game* game = new DummyGame(board);
00006     return  game;
00007 }