Console game missuesWith name like DrawMap, it could be assumed that that function just drew the map - and not update i...
Console game missues[code] Player Hero('O', 7, 5); ... if (Hero.GetPositionX() == 7 && Hero.GetPositionY() == 5) [/code]...
user invalid inputThe logic on L125 is not right. Consider: [code] while (!(choice == 'y' || choice == 'Y'|| choice =...
Should destructors be noexcept?Note that noexcept was introduced with C++11. Before that a different way was used - and much of MS ...
Should destructors be noexcept?Yes, you release resources in a destructor but releasing resources shouldn't usually cause an except...