From a960864893193e4c2c881c5b696c2cee1fa7c528 Mon Sep 17 00:00:00 2001 From: Brandon Jackson <1drummer@att.net> Date: Tue, 27 Oct 2015 21:48:22 -0500 Subject: [PATCH] Create test.cpp --- test.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test.cpp 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); +}