17 lines
364 B
C++
17 lines
364 B
C++
// Copyright (C) 2007 EQ2EMulator Development Team - GNU GPL v3+ - http://www.eq2emulator.net
|
|
|
|
#pragma once
|
|
|
|
#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 |