En el titulo no se podia empezar a jugar si no era con mando

This commit is contained in:
2024-06-30 23:01:55 +02:00
parent 4e9135c1af
commit 59671d6e55
4 changed files with 16 additions and 7 deletions

View File

@@ -44,8 +44,7 @@ Reescribiendo el código el 27/09/2022
int main(int argc, char *argv[])
{
std::cout << "Starting the game..." << std::endl
<< std::endl;
std::cout << "Game start" << std::endl;
// Crea el objeto Director
Director *director = new Director(argc, argv);
@@ -56,7 +55,7 @@ int main(int argc, char *argv[])
// Destruye el objeto Director
delete director;
std::cout << "\nShutting down the game..." << std::endl;
std::cout << "\nGame end" << std::endl;
return 0;
}