AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DummyGame.h Source File

DummyGame.h

00001 #ifndef DUMMYGAME_H
00002 #define DUMMYGAME_H
00003 
00004 #include "Game.h"
00005 
00006 class DummyGame : public Game{
00007     public:
00008     DummyGame(Board* board);
00009     void run();
00010     virtual void setup();
00011     
00012 };
00013 
00014 
00015 #endif