Code: Select all
class Items
{
int Cost;
char ItemName[15];
int SpriteID;
int ThumbID;
char iType[10];
void SetItem(int TempCost, char TempName[15], intTempSprite, int TempThumb, char TempType);
};
Moderator: Coders of Rage
Code: Select all
class Items
{
int Cost;
char ItemName[15];
int SpriteID;
int ThumbID;
char iType[10];
void SetItem(int TempCost, char TempName[15], intTempSprite, int TempThumb, char TempType);
};
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
Your code is fine I would would just change your naming of variables and classes to make them like thisMarauderIIC wrote:Something like that. Although your class name should probably be singular and your member names should probably start with a lowercase letter and be indented.
Code: Select all
class Item // take away 's' to not make it plural
{
int cost; // for all variables I have the first letter of the first word lowercase
char itemName[15];
int spriteID;
int thumbID;
char itemType[10]; // I changed it from iType to itemType as this is easier to read and use
void SetItem(int tempCost, char tempName[15], int tempSprite, int tempThumb, char tempType);
};