discord_impl.h 465 B

1234567891011121314151617181920212223242526
  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 Core {
  7. class System;
  8. }
  9. namespace DiscordRPC {
  10. class DiscordImpl : public DiscordInterface {
  11. public:
  12. DiscordImpl(Core::System& system_);
  13. ~DiscordImpl() override;
  14. void Pause() override;
  15. void Update() override;
  16. Core::System& system;
  17. };
  18. } // namespace DiscordRPC