2020-11-12 14:24:33 -05:00
|
|
|
|
2021-01-22 19:10:47 -05:00
|
|
|
#include "textgame.hpp"
|
2021-10-04 17:45:18 -04:00
|
|
|
#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;
|
2021-10-04 17:45:18 -04:00
|
|
|
driver_drive(&tg);
|
2020-11-12 14:24:33 -05:00
|
|
|
}
|