23 lines
463 B
C
23 lines
463 B
C
/* /domains/campus/adm/void.c
|
|
* from the Dead Souls Object Library
|
|
* place where people go when their environments accidentally are
|
|
* destructed
|
|
* created by Descartes of Borg 960302
|
|
*/
|
|
|
|
#include <lib.h>
|
|
#include ROOMS_H
|
|
|
|
inherit LIB_ROOM;
|
|
|
|
|
|
void create() {
|
|
room::create();
|
|
SetShort("the void");
|
|
SetLong("The void. Go down to get out.");
|
|
SetExits( ([ "down" : "/domains/campus/room/start" ]) );
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|