AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

games/DummyGame.cpp

Committer:
sillevl
Date:
2015-05-23
Revision:
14:e0bfee0a5e66
Parent:
13:ece97a1108cc
Child:
16:e8e96bf22df1

File content as of revision 14:e0bfee0a5e66:

#include "DummyGame.h"
#include "../objectives/ObjectiveFactory.h"

const char* NAME = "DummyGame";

DummyGame::DummyGame(Board* board) : Game(board){
    
}

void DummyGame::run(){ 
    Objective* objective = new ObjectiveFactory->create(this, 0);
    objective->start();
}

void DummyGame::setup(){

}