1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#include <iostream> // I/O Streaming
#include <string> // Strings, duh
#include <fstream> // File Streaming
#include "StateCapital.h"
using namespace std;
void ClearScreen() // Function used for clearing the screen
{
cout << string( 100, '\n' );
}
int main()
{
int SC_spy;
int SC_widow;
int SC_liz;
int SC_lbow;
int SC_reaper;
int SC_ball;
int SC_cat;
ifstream inFile; // Declare inFile
ofstream outFile; // Declare outFile
string troopList[29] = {"Spy", "Militia", "Swordsman", "Centurion", "Axe Thrower", "Bowman", "Longbowman", "Hussar", "Cavalry", "Paladin", "Battering Ram", "Ballista", "Catapult", "Goblin", "Prawn", "Orc", "Fire Beast", "Gorgon", "Lizard", "Witch", "Gargoyle", "Black Widow", "Vampire", "Butcher", "Demon", "Fallen", "Cyclops", "Troll", "Reaper"};
StateCapital State_object(SC_spy, SC_widow, SC_liz, SC_lbow, SC_reaper, SC_ball, SC_cat);
}
|