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
//This code is for the user interface for our text based game.
//Using Tutorial -- https://www.youtube.com/playlist?list=PL2U2TQ__OrQ8jTf0_noNKtHMuYlyxQl4v
#include <ncurses.h>
#include <iostream>
#include <menu.h>
#include <string>
using namespace std;
#ifndef mo_ncurses_h
#define mo_ncurses_h
class gamemenu
{
public:
void mainmenu();
};
#endif