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
14 lines
270 B
C++
14 lines
270 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
namespace Daybreak {
|
|
struct PreGamePayload {
|
|
int ChosenCharacterIndex;
|
|
std::list<std::string> Characters;
|
|
};
|
|
|
|
void to_json(json& j, const PreGamePayload& p);
|
|
} |