mud/lib/domains/begin/room/test.c
2020-09-06 05:43:07 -07:00

20 lines
394 B
C

#include <lib.h>
#include ROOMS_H
inherit LIB_ROOM;
void create() {
room::create();
SetClimate("indoors");
SetAmbientLight(30);
SetShort("The start room");
SetLong("The default start room. To enter "+
"a sample set of rooms, go down.");
SetExits( ([
"down" : "/domains/town/room/road",
]) );
}
void init(){
::init();
}