discord_impl.h 383 B

1234567891011121314151617181920
  1. // Copyright 2018 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "yuzu/discord.h"
  6. namespace DiscordRPC {
  7. class DiscordImpl : public DiscordInterface {
  8. public:
  9. DiscordImpl();
  10. ~DiscordImpl() override;
  11. void Pause() override;
  12. void Update() override;
  13. };
  14. } // namespace DiscordRPC