Okay, but still, one problem, how should this code call error C2448??
1 2 3 4 5 6 7 8 9 10
void menu(u, v, w)
{
cout<<"Who do you want to fight? (Press the number given between [])\n\n";
cout<<"Rat [1] (Easy)\n";
cout<<"Wolf [2] (Intermediate)\n";
cout<<"Ogre [3] (Hard)\n\n";
cin>>f;
cout<<"\n";
fight(f, u, v, w);
}
Ah lol thanks, thought it would be already ok, cuz I made a global variable for it (becuz I use it couple of times in my program)
Again thanks for help all =)