Create test.cpp

This commit is contained in:
Brandon Jackson 2015-10-27 21:48:22 -05:00
parent f24635c9cd
commit a960864893

14
test.cpp Normal file
View file

@ -0,0 +1,14 @@
#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);
}