manufacturing

This commit is contained in:
2021-02-18 19:54:08 +01:00
parent d36d67bd2c
commit f96d466f25
47 changed files with 14869 additions and 26 deletions

18
src/game.h Normal file
View 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