AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

games/DummyGame.h

Committer:
sillevl
Date:
2015-05-24
Revision:
23:eb5a5da6e83f
Parent:
16:e8e96bf22df1

File content as of revision 23:eb5a5da6e83f:

#ifndef DUMMYGAME_H
#define DUMMYGAME_H

#include "Game.h"

class DummyGame : public Game{
    public:
    DummyGame(Board* board);
    void run();
    virtual void setup();
    
};


#endif