15 lines
240 B
C++
15 lines
240 B
C++
![]() |
#include "Engine.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
Engine e;
|
||
|
int pn = 0;
|
||
|
cout << "Welcome to Breakthrough server launcher, please enter a host port number: \n";
|
||
|
cin >> pn;
|
||
|
cin.clear();
|
||
|
cin.ignore(10000,'\n');
|
||
|
e.startGame(pn);
|
||
|
}
|