Files
Text-Adventure/main.cpp
T

16 lines
208 B
C++
Raw Normal View History

2026-08-07 13:10:07 -05:00
#include <iostream>
#include "game.h"
int main(int argc, char *argv[]) {
Game game;
if (game.Init()) {
while (game.GetIsActive()) {
game.Run();
}
}
return 0;
}