From 9427e27e24a7135880ee2881c3c44988e174b41a Mon Sep 17 00:00:00 2001 From: Zephyron Date: Tue, 31 Dec 2024 16:19:25 +1000 Subject: chore: update project branding to citron --- src/yuzu/discord_impl.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/yuzu/discord_impl.h (limited to 'src/yuzu/discord_impl.h') diff --git a/src/yuzu/discord_impl.h b/src/yuzu/discord_impl.h deleted file mode 100644 index eb6cf9ae0..000000000 --- a/src/yuzu/discord_impl.h +++ /dev/null @@ -1,32 +0,0 @@ -// SPDX-FileCopyrightText: 2018 Citra Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include "yuzu/discord.h" - -namespace Core { -class System; -} - -namespace DiscordRPC { - -class DiscordImpl : public DiscordInterface { -public: - DiscordImpl(Core::System& system_); - ~DiscordImpl() override; - - 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; -}; - -} // namespace DiscordRPC -- cgit v1.2.3