mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-02-18 16:14:31 -07:00
13 lines
203 B
C++
13 lines
203 B
C++
#ifndef __SECRETS_H__
|
|
#define __SECRETS_H__
|
|
|
|
namespace wi {
|
|
|
|
extern const char *kszServerInfoSecret;
|
|
extern const char *kszStatSecret;
|
|
extern const char *kszTokenAuthSecret;
|
|
|
|
};
|
|
|
|
#endif // __SECRETS_H__
|