16 lines
228 B
C++
16 lines
228 B
C++
using namespace std;
|
|
|
|
#include <iostream>
|
|
|
|
#include "GameManager.h"
|
|
|
|
int main()
|
|
{
|
|
cout << "Starting game..." << endl;
|
|
GameManager gameManager;
|
|
|
|
cout << "Game started." << endl;
|
|
gameManager.run();
|
|
|
|
return 0;
|
|
} |