#include <windows.h>
#include <iostream>
usingnamespace std;
void world_Builder()
{
char spawn[50];
char answerOne[50];
cout << "This is the world builder here you can \n"
<< "design where you want to spawn and the \n"
<< "vegetation and mineral occupancy of your world!\n"
<<endl;
biome:
cout << "Choose in what biome do you want to spawn in: \n"
<< "Forest\n"
<< "Plains\n"
<< "Desert (hardest one) \n"
<<endl;
cout << "\n What biome do you start in?";
cin >> spawn;
cout << "Are you sure you want to spawn in? \n" << spawn << endl;
cin >> answerOne;
if (answerOne == "yes")
{
cout << "Your spawn biome will be " << spawn << endl;
}
char_Creator(); //error comes here
}
void char_Creator()
{
char age[50];
cout << "Next you must create your character, \n"
<< "in Sandbox mode you can decide what age and era you want to start in."
<<endl;
}
int main ()
{
char name[50];
cout << "Before continuing tell me your name: \n";
cin >> name;
system("cls");
world_Builder();
}