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

14 lines
251 B
C

#include <lib.h>
inherit LIB_ROOM;
static void create() {
room::create();
SetClimate("outdoors");
SetAmbientLight(30);
SetShort("a generic place");
SetLong("This is an utterly plain, blank place.");
}
void init(){
::init();
}