mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-21 15:54:59 +00:00
* GWCA integration GWCAMemoryReader partial implementation * Complete Daybreak.GWCA implementation Fix metrics view Upgrade dependencies * Update version * Add solution dir property * Another try * Fix version check * Fix codeql pipeline * Codeql fixes * Fetch submodules * Final codeql change
15 lines
283 B
C++
15 lines
283 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <GWCA/GameEntities/Map.h>
|
|
#include <json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
namespace Daybreak {
|
|
struct LoginPayload {
|
|
std::string Email;
|
|
std::string PlayerName;
|
|
};
|
|
|
|
void to_json(json& j, const LoginPayload& p);
|
|
} |