/**
* This is the indoors ball room inherit,
* here we can ask each other to dance.
* @author Sandoz 12th October 2001.
*/
inherit ROOM_OBJ;
inherit ROOM_DIR "/inherit/ball_room";
/** @ignore yes */
void create() {
basic_room::create();
ball_room::create();
} /* create() */
/** @ignore yes */
void init() {
basic_room::init();
ball_room::init();
} /* init() */
/** @ignore yes */
void dest_me() {
basic_room::dest_me();
ball_room::dest_me();
} /* init() */