mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
address feedback
This commit is contained in:
parent
ce5bd68067
commit
214626222c
@ -10,7 +10,9 @@
|
|||||||
#include "PlayerContainer.h"
|
#include "PlayerContainer.h"
|
||||||
#include "dConfig.h"
|
#include "dConfig.h"
|
||||||
#include "httplib.h"
|
#include "httplib.h"
|
||||||
#include "json.h"
|
#include "nlohmann/json.hpp"
|
||||||
|
|
||||||
|
using json = nlohmann::json;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
httplib::Server m_APIServer;
|
httplib::Server m_APIServer;
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
#include "dConfig.h"
|
#include "dConfig.h"
|
||||||
#include "eChatMessageType.h"
|
#include "eChatMessageType.h"
|
||||||
|
|
||||||
|
using json = nlohmann::json;
|
||||||
|
|
||||||
const json PlayerData::to_json() const {
|
const json PlayerData::to_json() const {
|
||||||
json data;
|
json data;
|
||||||
data["id"] = this->playerID;
|
data["id"] = this->playerID;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#include "Game.h"
|
#include "Game.h"
|
||||||
#include "dServer.h"
|
#include "dServer.h"
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include "json.h"
|
#include "nlohmann/json.hpp"
|
||||||
|
|
||||||
enum class eGameMasterLevel : uint8_t;
|
enum class eGameMasterLevel : uint8_t;
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ struct PlayerData {
|
|||||||
return muteExpire == 1 || muteExpire > time(NULL);
|
return muteExpire == 1 || muteExpire > time(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
const json to_json() const;
|
const nlohmann::json to_json() const;
|
||||||
|
|
||||||
SystemAddress sysAddr{};
|
SystemAddress sysAddr{};
|
||||||
LWOZONEID zoneID{};
|
LWOZONEID zoneID{};
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
#ifndef __JSON__H__
|
|
||||||
#define __JSON__H__
|
|
||||||
|
|
||||||
#include "nlohmann/json.hpp"
|
|
||||||
|
|
||||||
namespace {
|
|
||||||
using json = nlohmann::json;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // !__JSON__H__
|
|
Loading…
Reference in New Issue
Block a user