21 lines
384 B
C
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();
|
|
}
|