citra/src/citra_qt/discord_impl.h

28 lines
489 B
C++
Raw Normal View History

// Copyright 2018 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "citra_qt/discord.h"
2023-08-01 03:57:38 +03:00
namespace Core {
class System;
}
namespace DiscordRPC {
class DiscordImpl : public DiscordInterface {
public:
2023-08-01 03:57:38 +03:00
DiscordImpl(const Core::System& system);
2018-09-17 17:16:01 +02:00
~DiscordImpl() override;
void Pause() override;
void Update() override;
2023-08-01 03:57:38 +03:00
private:
const Core::System& system;
};
} // namespace DiscordRPC