mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
22 lines
629 B
C++
22 lines
629 B
C++
#ifndef EQEMU_WORLD_BOOT_H
|
|
#define EQEMU_WORLD_BOOT_H
|
|
|
|
#include <string>
|
|
#include "../common/types.h"
|
|
|
|
class WorldBoot {
|
|
public:
|
|
static void GMSayHookCallBackProcessWorld(uint16 log_category, std::string message);
|
|
static bool HandleCommandInput(int argc, char **argv);
|
|
static bool LoadServerConfig();
|
|
static bool LoadDatabaseConnections();
|
|
static void CheckForServerScript(bool force_download = false);
|
|
static void CheckForXMLConfigUpgrade();
|
|
static void RegisterLoginservers();
|
|
static bool DatabaseLoadRoutines(int argc, char **argv);
|
|
static void CheckForPossibleConfigurationIssues();
|
|
};
|
|
|
|
|
|
#endif //EQEMU_WORLD_BOOT_H
|