الثلاثاء، 24 ديسمبر 2013

C++ Multiple Parameter Object creation

I am a virtual beginner in programming and am trying to understand a simple part of Object oriented programming. I apologize in advance if the answer to my question seems obvious, but I have tried to find similar examples online using google and youtube but sadly nothing fits the bill. With that said here is my question.

I am trying to make a simple video game inventory similar to the ones you would see in RPGs such as Final Fantasy VI or Chrono Trigger. What I am having trouble with is creating the items of the inventory. What I'd like help with is how to create one object that defines one item, for example a potion. I know it will take multiple parameters which are listed here:

itemText = "Potion";itemDesc = "Regain 50 HP";itemEffect = playerHP + 50;buyCost = 50;sellCost = 25;

What I'd like help with is syntax of the connection of these parameters in one object. Later I will use the data so that I can create an array that shows only the itemText and a Quantity for the player to see. Any and all help or places would be appreciated.

Thank you in advance, Delita


View the original article here

ليست هناك تعليقات:

إرسال تعليق