#include #include using namespace std; struct Game { string name; int fun; int storage; }; int main() { vector games{ Game{"Root", 10, 3}, Game{"Twilight Imperium", 8, 2}, Game{"Descent Journeys in the Dark: second edition", 9, 3}, Game{"Descent Journeys in the Dark: first edition", 8, 5}, Game{"Arcs", 7, 3} }; }