15 lines
325 B
C
15 lines
325 B
C
// Copyright (C) 2007-2025 EQ2EMulator
|
|
// Licensed under GPL v3
|
|
#define BASEDIR "./"
|
|
|
|
#ifndef DB_INI_FILE
|
|
#ifdef LOGIN
|
|
#define DB_INI_FILE BASEDIR "login_db.ini"
|
|
#else
|
|
#define DB_INI_FILE BASEDIR "world_db.ini"
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef MAIN_CONFIG_FILE
|
|
#define MAIN_CONFIG_FILE BASEDIR "server_config.json"
|
|
#endif |