AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Committer:
sillevl
Date:
Sat May 23 17:15:42 2015 +0000
Revision:
13:ece97a1108cc
Parent:
5:be598835bab0
Child:
16:e8e96bf22df1
Refactoring and adding GameFactory and Objective concept

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sillevl 5:be598835bab0 1 #ifndef DUMMYGAME_H
sillevl 5:be598835bab0 2 #define DUMMYGAME_H
sillevl 5:be598835bab0 3
sillevl 5:be598835bab0 4 #include "Game.h"
sillevl 5:be598835bab0 5
sillevl 5:be598835bab0 6 class DummyGame : public Game{
sillevl 5:be598835bab0 7 public:
sillevl 5:be598835bab0 8 DummyGame(Board* board);
sillevl 5:be598835bab0 9 virtual void run();
sillevl 13:ece97a1108cc 10 virtual void setup();
sillevl 5:be598835bab0 11 };
sillevl 5:be598835bab0 12
sillevl 5:be598835bab0 13
sillevl 5:be598835bab0 14 #endif