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

21 lines
384 B
C

#include <lib.h>
#include ROOMS_H
#include "ex.h"
inherit LIB_ROOM;
void create() {
room::create();
SetAmbientLight(30);
SetShort("a blank room");
SetLong("A featureless area. The example rooms are north.");
SetExits( ([
"north" : EXPATH + "entrance"
]) );
SetCoordinates("-3000,-3000,-3000");
}
void init(){
::init();
}