Added new game mode which will be called HangMan. This is basic one by the generic rules of hang man. You have a word which will be hidden, for example 'Hay Bale' which will be shown for players as something like 'H__ __l_' or even `___ ____` or even `________` depending on your configuration. After that we will reveal new letter after certain period of time, one by one. If letter repeats then we will reveal all of them at once. Interval between letter reveal is directly dependent on your TimeForAnswer setting in config file and how many letters we have missing. So longer words (like `Enchanted Golden Apple`) will tend to reveal letters more often than short one (like `cow`) and its dependent on how many letters we actually hidden, so 4 letter word with 2 letters missing will have allot longer delay between letter reveals than 30 letter word with 28 letters missing. This is just to show all (minus last one) letters before timer runs out. And if no one answers before last letter reveal, game ends without winners.
Due to completely different handling of this new game mode had to rewrite some of the code, so if issues arise, let me know.