17 lines
282 B
C
17 lines
282 B
C
#include <lib.h>
|
|
#include ROOMS_H
|
|
|
|
inherit LIB_ROOM;
|
|
|
|
void create() {
|
|
room::create();
|
|
SetAmbientLight(30);
|
|
SetShort("the void");
|
|
SetLong("The void. Go down to get out.");
|
|
SetExits( ([ "down" : ROOM_START ]) );
|
|
SetNoModify(1);
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|