19 lines
243 B
C
19 lines
243 B
C
#include <lib.h>
|
|
#include ROOMS_H
|
|
|
|
#include "../customdefs.h";
|
|
|
|
inherit LIB_ROOM;
|
|
|
|
void create() {
|
|
room::create();
|
|
SetAmbientLight(30);
|
|
SetShort("a blank room");
|
|
SetLong("A featureless area.");
|
|
}
|
|
|
|
void init(){
|
|
::init();
|
|
}
|
|
|