diff --git a/test.cpp b/test.cpp new file mode 100644 index 0000000..e697fbe --- /dev/null +++ b/test.cpp @@ -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); +}