AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DummyGame.cpp Source File

DummyGame.cpp

00001 #include "DummyGame.h"
00002 #include "../objectives/ObjectiveFactory.h"
00003 
00004 const char* NAME = "DummyGame";
00005 
00006 DummyGame::DummyGame(Board* board) : Game(board){
00007     
00008 }
00009 
00010 void DummyGame::setup(){
00011     objectives.push_back(ObjectiveFactory::create(this, 0));
00012     objectives.push_back(ObjectiveFactory::create(this, 0));
00013 }
00014 
00015 void buttonEvent(char c){
00016     
00017 }