In process of adding luaconsole.cpp

This commit is contained in:
2021-01-23 16:10:29 -05:00
parent b85e92343f
commit b897c10506
33 changed files with 264 additions and 191 deletions

15
luprex/cpp/textgame.hpp Normal file
View File

@@ -0,0 +1,15 @@
#ifndef TEXTGAME_HPP
#define TEXTGAME_HPP
#include "viewer.hpp"
class TextGame {
private:
Viewer viewer_;
public:
void run();
};
#endif // TEXTGAME_HPP