AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Revision:
13:ece97a1108cc
Child:
14:e0bfee0a5e66
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/games/GameFactory.cpp	Sat May 23 17:15:42 2015 +0000
@@ -0,0 +1,7 @@
+#include "GameFactory.h"
+#include "DummyGame.h"
+
+Game* GameFactory::create_game(Board* board, int choice){
+    Game* game = new DummyGame(board);
+    return  game;
+}
\ No newline at end of file