Ok here is the code for the very beginning of my program.
Ive used all those functions so far. It says that create(), creatdata(string rac), menu(), and story() all work. Yet, it says that adventure1(), cleft(), cright(), cdry(), and cwet() are undefined. I cant seem to figure out why. That right there shows them being defined doesnt it?Code:#include <iostream> #include <fstream> #include <string> #include <cstdlib> #include <windows.h> using namespace std; void create(); // This makes the create function, which allows me to use the creatdata funtion. void createdata(string rac); // Creates character data, after character is created. void menu(); // Allows game menu to show up. void story(); // Begins story. void adventure1(); // Starts you on your travels. void cleft(); // Chose to go left in adventure1 void cright(); // Chose to go right in adventure1. void cdry(); // You entered the cave in RIGHT. void cwet();



LinkBack URL
About LinkBacks


