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

8
luprex/cpp/main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "textgame.hpp"
int main(int argc, char **argv)
{
TextGame tg;
tg.run();
}