//======================= // container.cpp //======================= // default constructor initialise the inventory as empty container::container() { set(0,0); } // set the item numbers void container::set(int heal_n, int mw_n) { numOfHeal=heal_n; numOfMW=mw_n; } // get the number of heal int container::nOfHeal() { return numOfHeal; } // get the number of magic water int container::nOfMW() { return numOfMW; } // display the items; void container::display() { cout<<"Your bag contains: "<