c++ help with classes and arrays?

ace

New member
sorry to ask but how do i declare an array of classes with constructors.

en example class would be:
class box
{
public:
int x, y, h, w;
box(int o_x, int o_y, int o_w, int o_h);
};
 
Back
Top