I dont know what is wrong with my code so far...I just started the game and for some reason it says its failed .
// First Complex Game
#include <iostream>
#include <string>
using namespace std;
int main()
{
const int SMALLMOB_LOOT = 10;
const int LARGEMOB_LOOT = 15;
const int BOSS_LOOT = 30;
string character;
string CLASS_CHOICE;
// Personalizing the character
cout << "\tWelcome To Huntswin! The Medieval School!\n";
cout << "\nWhat is your name young one?: ";
cin >> character;
cout << "\nWelcome " << character << " to Huntswin Medieval school!\n";
cout << "\nHuntswin offers three different courses here, here are you options:\n";
cout << "Guard , Archer, or Mage! Type the class you would want to be!(Case sensitive): ";
cin >> CLASS_CHOICE;