Files
integration/luprex/cpp/main.cpp

9 lines
93 B
C++
Raw Normal View History

2020-11-12 14:24:33 -05:00
2021-01-22 19:10:47 -05:00
#include "textgame.hpp"
2020-11-12 14:24:33 -05:00
int main(int argc, char **argv)
{
2021-01-22 19:10:47 -05:00
TextGame tg;
tg.run();
2020-11-12 14:24:33 -05:00
}