diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-07-21 13:08:46 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-07-21 16:53:06 -0600 |
commit | c06704638738f5162fbf23ac7e15db5e619028c9 (patch) | |
tree | ac12e898a7c629b685a47665b9ae945a4f2e12b4 /src/yuzu/discord_impl.h | |
parent | 3fded314f22554c867a283ca3b5c79069d96fe0d (diff) |
yuzu: Replace httplib with QtNetworkRequest
Diffstat (limited to 'src/yuzu/discord_impl.h')
-rw-r--r-- | src/yuzu/discord_impl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/yuzu/discord_impl.h b/src/yuzu/discord_impl.h index 84710b9c6..eb6cf9ae0 100644 --- a/src/yuzu/discord_impl.h +++ b/src/yuzu/discord_impl.h @@ -19,6 +19,13 @@ public: void Pause() override; void Update() override; +private: + std::string GetGameString(const std::string& title); + void UpdateGameStatus(bool use_default); + + std::string game_url{}; + std::string game_title{}; + Core::System& system; }; |