Skip to content
Permalink
76f84e8963
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
27 lines (19 sloc) 283 Bytes
#ifndef ALPHABET_H
#define ALPHABET_H
#include <iostream>
#include <conio.h>
#include <string>
#include "jobmenu.h"
#include "playermenu.h"
#include "player.h"
using namespace std;
class Alphabet
{
public:
Alphabet()
{
}
void random_word();
void user_input();
};
#endif