aboutsummaryrefslogtreecommitdiff
path: root/discord_rich_presence.h
blob: 3c9f2bda19cfed38b9bff0fd829ddf412df646f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef DISCORD_RICH_PRESENCE_H
#define DISCORD_RICH_PRESENCE_H

#include <string>
#include <discord-rpc.h>

namespace AttorneyOnline {

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(std::string name, std::string server_id);
  void state_character(std::string name);
  void state_spectate();
};

}
#endif // DISCORD_RICH_PRESENCE_H