Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#ifndef _SHUVAS_H
#define _SHUVAS_H
#include <iostream>
#include <vector>
#include <string>
#include <fstream>
#include <climits>
#include <unistd.h>
#include "database.h"
void cls();
class GameClass2 //this is use to create a class and name it
{
public: //public means that the variables within this class can be accesed from anywhere in the program
void beachFun(); //creating and naming a function
};
class GameClass
{
public: //allows othe classes to access the methods without the use of multiple steps
void wrongFun();
void riverFun();
void cottageFun();
void moreForestFun();
void followAnimal();
void choice1pathway ();
void choice2forest ();
void introFun ();
};
#endif //_SHUVAS_H