forked from chinosk/gkms-local
17 lines
322 B
C++
17 lines
322 B
C++
#ifndef GAKUMAS_LOCALIFY_CONFIG_HPP
|
|
#define GAKUMAS_LOCALIFY_CONFIG_HPP
|
|
|
|
|
|
namespace GakumasLocal::Config {
|
|
extern bool isConfigInit;
|
|
|
|
extern bool enabled;
|
|
extern bool enableFreeCamera;
|
|
extern int targetFrameRate;
|
|
|
|
void LoadConfig(const std::string& configStr);
|
|
}
|
|
|
|
|
|
#endif //GAKUMAS_LOCALIFY_CONFIG_HPP
|