14 lines
240 B
C++
14 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);
|
|
}
|