So I'm trying to create what is basically a linked list of rooms that stores pointers to the previous and next room in each room.
#ifndef Hospital_Room_h
#define Hospital_Room_h
class Room
{
public:
Room( Room const &);
Room createRooms();
Room next;
Room prev;
};
#endif