blob: 087fe8dfdafca1e45a539a064cb7e69ab30128f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef DISCORD_RICH_PRESENCE_H
#define DISCORD_RICH_PRESENCE_H
#include <discord-rpc.h>
namespace AttorneyOnline {
class Discord
{
private:
const char* APPLICATION_ID = "399779271737868288";
public:
Discord();
~Discord();
void state_lobby();
void state_server(const char* name, const char* server_id);
};
}
#endif // DISCORD_RICH_PRESENCE_H
|