This commit is contained in:
2024-01-30 15:45:14 +01:00
parent d67394aaec
commit ca204d05af
17 changed files with 658 additions and 568 deletions
+15 -15
View File
@@ -1,16 +1,16 @@
using namespace std;
#include <iostream>
#include "GameManager.h"
int main()
{
cout << "Starting game..." << endl;
GameManager gameManager;
cout << "Game started." << endl;
gameManager.run();
return 0;
using namespace std;
#include <iostream>
#include "GameManager.h"
int main()
{
cout << "Starting game..." << endl;
GameManager gameManager;
cout << "Game started." << endl;
gameManager.run();
return 0;
}