database_mysql -> database

This commit is contained in:
Akkadius 2019-07-03 23:27:45 -05:00
parent a914e97c29
commit 8ad4ef503b
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
SET(eqlogin_sources SET(eqlogin_sources
client.cpp client.cpp
client_manager.cpp client_manager.cpp
database_mysql.cpp database.cpp
encryption.cpp encryption.cpp
main.cpp main.cpp
server_manager.cpp server_manager.cpp
@ -13,7 +13,7 @@ SET(eqlogin_sources
SET(eqlogin_headers SET(eqlogin_headers
client.h client.h
client_manager.h client_manager.h
database_mysql.h database.h
encryption.h encryption.h
login_server.h login_server.h
login_structures.h login_structures.h

View File

@ -20,7 +20,7 @@
#include "../common/global_define.h" #include "../common/global_define.h"
#include "database_mysql.h" #include "database.h"
#include "login_server.h" #include "login_server.h"
#include "../common/eqemu_logsys.h" #include "../common/eqemu_logsys.h"
#include "../common/eqemu_logsys_fmt.h" #include "../common/eqemu_logsys_fmt.h"

View File

@ -23,7 +23,7 @@
#define EQEMU_LOGINSERVER_H #define EQEMU_LOGINSERVER_H
#include "../common/json_config.h" #include "../common/json_config.h"
#include "database_mysql.h" #include "database.h"
#include "encryption.h" #include "encryption.h"
#include "options.h" #include "options.h"
#include "server_manager.h" #include "server_manager.h"