Files
integration/luprex/core/cpp/main.cpp

10 lines
124 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"
#include "driver.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;
driver_drive(&tg);
2020-11-12 14:24:33 -05:00
}