Files
Text-Adventure/#main.cpp#~
T
2026-08-07 13:10:07 -05:00

21 lines
188 B
Plaintext

#include <iostream>
#include "Engine/Game.h"
int main(int argc, char *argv[])
{
Game game;
if (game.Init())
{
while(game.GetIsRunning())
{
}
}
return 0;
}