Heres my error...
\"In constructor \'NumGame::NumGame(int&)\': error: no matching function for call to \'Category::Category()\'\"
Ive looked at a few sim
in your NumGame class you have to provide a call to constructor of base class. if you don t, compiler do it for you with default contructor : in your case Category() that you don t have..
NumGame
Category()