I have a struct like this:
class Items
{
private:
struct item
{
unsigned int a, b, c;
};
item* items[MAX_ITEMS];
}
There are a few, related, questions here:
struct is, so you don't need to delete[] the array. If you created the array with new[] you would have to delete[] it.