AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Revision:
5:be598835bab0
Child:
13:ece97a1108cc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/games/DummyGame.cpp	Sat Dec 13 12:24:37 2014 +0000
@@ -0,0 +1,14 @@
+#include "DummyGame.h"
+
+const char* NAME = "DummyGame";
+
+DummyGame::DummyGame(Board* board) : Game(board){
+    
+}
+
+void DummyGame::run(){
+    board->lcd->printf("DummyGame");   
+    while(true){
+        // don't return from this function yet (only if the game ends);   
+    }
+}
\ No newline at end of file