Is there a way to have the initializers in the classes.h file? i'd rather they were to my sourceCode.cpp doesn't get cluddered.

Also, im planning to do something like this..

Room temp(agruments);
roomArray[0][3] = temp;

Room temp(arguments);
roomArray[0][4] = temp;

so i think assigning the address of temp to the elements won't work.