mud/lib/domains/Praxis/void.c
2020-09-06 05:43:07 -07:00

14 lines
231 B
C

#include <lib.h>
inherit LIB_ROOM;
void create() {
room::create();
SetShort("the void");
SetLong("The void. Go down to get out.");
SetExits(([ "down": "/domains/Praxis/square" ]));
}
void init(){
::init();
}