mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-27 05:04:37 +00:00
15 lines
225 B
C++
15 lines
225 B
C++
#pragma once
|
|
|
|
class DiscordPresence
|
|
{
|
|
public:
|
|
void Initialise();
|
|
void Shutdown();
|
|
|
|
void Tick();
|
|
|
|
void SetPresenceContext(int state);
|
|
void SetCurrentGameActivity(int details);
|
|
};
|
|
|
|
extern DiscordPresence g_DiscordPresence; |