#pragma once #ifdef PANDA3DS_ENABLE_DISCORD_RPC #include #include #include 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