Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Game.h
- Committer:
- Peeraya
- Date:
- 2015-12-09
- Revision:
- 5:60262753a05f
- Parent:
- 4:a61cdd4e7afa
File content as of revision 5:60262753a05f:
#ifndef GAME_H_INCLUDED
#define GAME_H_INCLUDED
#include"DigitDisplay.h"
class Game
{
private:
int level;
public:
Game();
char dectohex(int dec);
int randomHex(float x);
int checkButton(int x);
int getlevel();
void resetlevel();
void pluslevel();
};
#endif // GAME_H_INCLUDED