aboutsummaryrefslogtreecommitdiff
path: root/discord_rich_presence.h
diff options
context:
space:
mode:
Diffstat (limited to 'discord_rich_presence.h')
-rw-r--r--discord_rich_presence.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/discord_rich_presence.h b/discord_rich_presence.h
index 087fe8df..3c9f2bda 100644
--- a/discord_rich_presence.h
+++ b/discord_rich_presence.h
@@ -1,6 +1,7 @@
#ifndef DISCORD_RICH_PRESENCE_H
#define DISCORD_RICH_PRESENCE_H
+#include <string>
#include <discord-rpc.h>
namespace AttorneyOnline {
@@ -9,12 +10,16 @@ class Discord
{
private:
const char* APPLICATION_ID = "399779271737868288";
+ std::string server_name, server_id;
+ int64_t timestamp;
public:
Discord();
~Discord();
void state_lobby();
- void state_server(const char* name, const char* server_id);
+ void state_server(std::string name, std::string server_id);
+ void state_character(std::string name);
+ void state_spectate();
};
}