/* * objects.h * * Define paths to DriverLib objects * None of these objects shall have a direct interface to the mudlib, * except through inheritance in the auto object * * (C) Frank Schmidt, Jesus@NorseMUD * */ #ifndef _OBJECTS_H #define _OBJECTS_H /* auto inherit object (inherited by all objects) */ #define AUTO "/dgd/lib/sys/auto" /* the driver object (direct link to DGD driver) */ #define DRIVER "/dgd/lib/sys/driver" /* global object (holds global functions and data) */ #define GLOBAL "/dgd/lib/sys/global" /* user object (telnet connection) */ #define USER "/dgd/lib/std/user" /* The Editor (tm) */ #define EDITOR "/dgd/lib/std/editor" #endif