mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
* Qt: Add config window controls * Fix Windows build * Fix audio slider * Qt configs: Make thread-safe, properly update audio enable & renderdoc settings * Qt configs: Add `connectCheckbox` function * Qt configs: Add `connectCheckbox` function * Rename spuLayout * Add Discord RPC reloading * Allow configuring the app icon * Qt: Serialize icon & theme, properly set them * Add rnap and rcow icons * Qt: Fix forceShadergen config --------- Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
25 lines
No EOL
426 B
C++
25 lines
No EOL
426 B
C++
#pragma once
|
|
|
|
#ifdef PANDA3DS_ENABLE_DISCORD_RPC
|
|
#include <discord_rpc.h>
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace Discord {
|
|
enum class RPCStatus { Idling, Playing };
|
|
|
|
class RPC {
|
|
std::uint64_t startTimestamp;
|
|
bool enabled = false;
|
|
|
|
public:
|
|
void init();
|
|
void update(RPCStatus status, const std::string& title);
|
|
void stop();
|
|
|
|
bool running() const { return enabled; }
|
|
};
|
|
} // namespace Discord
|
|
|
|
#endif |