Hi, lets say i have
class Players{
public: vector <strings> info
};
and class that inherits from it
class son:public Players{
};
now in the main function i make 2 of those so now i have 2 vectors in memory
that vector holds the same data for all of the sons i create
so is there a simple way to make them share that info?
something like static? thanks