/**
* This room will handle craft shop like things, where you sell stuff to
* the store and it will sell it onto other players after taking
* a margin. This can be used for potions, pottery, swords, anything!
* @author Pinkfish
* @started Thu Feb 5 15:39:57 CST 1998
*/
inherit ROOM_OBJ;
inherit "/std/shops/inherit/craft_shop_category";
/** @ignore yes */
void create() {
add_help_file("craft_shop");
add_help_file("craft_shop_category");
basic_room::create();
craft_shop_category::create();
} /* create() */
/** @ignore yes */
void init() {
basic_room::init();
craft_shop_category::init();
} /* init() */
/** @ignore yes */
void dest_me() {
craft_shop_category::dest_me();
basic_room::dest_me();
} /* dest_me() */