AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

games/DummyGame.cpp

Committer:
sillevl
Date:
2017-02-09
Revision:
27:f29805113454
Parent:
24:f0989eca7469

File content as of revision 27:f29805113454:

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

const char* NAME = "DummyGame";

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

void DummyGame::setup(){
    objectives.push_back(ObjectiveFactory::create(this, 0));
    objectives.push_back(ObjectiveFactory::create(this, 0));
}

void buttonEvent(char c){
    
}