aboutsummaryrefslogtreecommitdiff
path: root/src/citra_qt/discord_impl.h
blob: 25bee06967a9ed82eac181af1fd4eb94f00d67ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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"

namespace Core {
class System;
}

namespace DiscordRPC {

class DiscordImpl : public DiscordInterface {
public:
    DiscordImpl(const Core::System& system);
    ~DiscordImpl() override;

    void Pause() override;
    void Update() override;

private:
    const Core::System& system;
};

} // namespace DiscordRPC