You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
449 B
24 lines
449 B
// SPDX-FileCopyrightText: 2018 Citra Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace DiscordRPC {
|
|
|
|
class DiscordInterface {
|
|
public:
|
|
virtual ~DiscordInterface() = default;
|
|
|
|
virtual void Pause() = 0;
|
|
virtual void Update() = 0;
|
|
};
|
|
|
|
class NullImpl : public DiscordInterface {
|
|
public:
|
|
~NullImpl() = default;
|
|
|
|
void Pause() override {}
|
|
void Update() override {}
|
|
};
|
|
|
|
} // namespace DiscordRPC
|