#include <iostream>
using namespace std;
int main()
{
//setting values for the items and characters
{
int player;
int healthvalue = 100;
int sword;
int enemy1;
int enemy2;
std::cout << "Hello player! Welcome to the game!\n\t";
}
{
std::cout << "You wake up in confusion, your whereabouts are unknown.\n"
<< std::endl;
std::cout << "A band of goblins approachs you from the distant horizon.\n\t" << std::endl;
std::cout << "Do you draw your sword and stand your ground?\n";
cin >> yes, no;
if (true) {
}
}
}
this is what we have so far. We are trying to enable yes and no options. and later on we might try movement options. Can any one help us with this? it will be greatly appreciated.