mirror of
https://github.com/spicetools/spicetools.git
synced 2026-04-26 07:46:51 -05:00
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();
|
|
}
|