Welcome to the Hangman Game! This is a classic word-guessing game where you try to guess a hidden word by suggesting letters, with each incorrect guess resulting in the drawing of a hanging man.
To start the game, simply run the executable file on your terminal. You will be presented with a series of underscores, each representing a letter in the hidden word. Enter a letter and the program will tell you whether it is correct or not. You have a limited number of guesses before the game ends.
This Hangman game includes the following features:
- A dictionary of over 40 words to guess from
- User-friendly interface with ASCII art
- High score tracking
- Easter Egg mode
This project requires a C++ compiler to build and run.
To install and run the game on your computer, follow these steps:
Clone the repository to your computer:
git clone https://github.com/NutNaphop/HangMan_NewGen.gitCompile the game using your C++ compiler:
cd src
g++ -o hangman main.cppRun the game executable:
./hangman