Inventory - JayhawkZombie/EECS581Project GitHub Wiki

##Abstract The inventory is the array that holds all of the parties/Shops Items and gold.

##Dependencies

  • Item and derived classes
    • specifically the m_num variable as that is used to determine the size of the inventory

##Member Variables

  • Item[sizeof(Item)] m_content;
  • int m_gold;

##Functions

###DisplayInventory()

  • Displays the inventory to the user
    • Later this will interact with the UI

##Corresponding Java Versoion

None