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.
25 lines
478 B
25 lines
478 B
// Copyright 2018 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#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
|