mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
* Add discord-rpc submodule * Add Discord RPC * Fix up Discord status * Fix CMake because MacOS sucks * Slightly less hacky fix
23 lines
No EOL
382 B
C++
23 lines
No EOL
382 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();
|
|
};
|
|
} // namespace Discord
|
|
|
|
#endif |