mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-24 17:24:56 +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
276 B
C++
15 lines
276 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <GWCA/GameEntities/Map.h>
|
|
#include <payloads/BagContent.h>
|
|
#include <json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
namespace Daybreak {
|
|
struct Bag {
|
|
std::list<BagContent> Items;
|
|
};
|
|
|
|
void to_json(json& j, const Bag& p);
|
|
} |