How do I constantly display information that is being updated(Health bars) and not clearing it while clearing the rest of screen? (Code isn't even close to done, I just want to know for future reference, thx!)
cout << "Welcome adventurer! Before we begin your adventure, what is your name?\n";
getline.cin >> name;
system("cls");
cout << "I wish you luck, << name << ".\n";
system("cls");
cout << "You will encounter many enemies and other things within the dungeon.\n"
"Enemies will get stronger the more you defeat them!\n"
"Upgrade your health, armor, and damage in order to defeat more enemies!\n"
"Press a button to let me know when you're ready and I will take you to the entrance.";
system("pause");
system("cls");
cout << "This is as far as I go, from here on out you're on your own.\n";
"Once again I wish you luck << name << ".\n";
system("pause");
system("cls");
cout << "*Entering the cave you are immediately greeted by darkness!*";
randEnemy();
cout << "Lighting a torch you see a << enemy << " blocking your path. Time to fight!\n";