#include <iostream>
#include <string>
void exploreCave() {
std::cout << "You venture into the dark cave and find a treasure chest!\n";
// Add more interactive elements here
}
void crossBridge() {
std::cout << "You cross the old bridge and encounter a troll!\n";
// Add more interactive ...
Lovey style