manufacturing
This commit is contained in:
18
src/game.h
Normal file
18
src/game.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef GAMEH
|
||||
#define GAMEH
|
||||
|
||||
class c_game
|
||||
{
|
||||
|
||||
protected:
|
||||
bool _status;
|
||||
|
||||
public:
|
||||
c_game(void): _status(false) {};
|
||||
|
||||
void runGame(void);
|
||||
void initGame(void);
|
||||
bool getStatus(void) { return _status;}
|
||||
};
|
||||
|
||||
#endif //GAMEH
|
||||
Reference in New Issue
Block a user