16 lines
225 B
C++
16 lines
225 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace richpresence {
|
|
|
|
// settings
|
|
namespace discord {
|
|
extern std::string APPID_OVERRIDE;
|
|
}
|
|
|
|
void init();
|
|
void update(const char *state);
|
|
void shutdown();
|
|
}
|