31 lines
539 B
INI
31 lines
539 B
INI
#ifndef __GLOBAL_H
|
|
#define __GLOBAL_H
|
|
|
|
#define CONFIG_H "TEMPLATE_CONFIG"
|
|
#define NETWORK_H "TEMPLATE_NETWORK"
|
|
#define ROOMS_H "TEMPLATE_ROOMS"
|
|
#define SECRETS_H "TEMPLATE_SECRETS"
|
|
|
|
#include CONFIG_H
|
|
#include <lib.h>
|
|
|
|
#if COMPAT_MODE
|
|
#include <compat.h>
|
|
#endif
|
|
|
|
#define DAY_ONE 720550800
|
|
|
|
#define SEFUN "/secure/sefun/sefun"
|
|
|
|
#define DEBUG
|
|
|
|
#ifdef debug
|
|
#undef debug
|
|
#endif /* debug */
|
|
|
|
//#ifdef DEBUG
|
|
//#define debug(x, y) (find_player(x) || master())->eventPrint(x)
|
|
//#endif /* DEBUG */
|
|
|
|
#endif /* GLOBAL_H */
|