gkms-local/app/src/main/cpp/GakumasLocalify/config/Config.hpp

32 lines
749 B
C++

#ifndef GAKUMAS_LOCALIFY_CONFIG_HPP
#define GAKUMAS_LOCALIFY_CONFIG_HPP
namespace GakumasLocal::Config {
extern bool isConfigInit;
extern bool enabled;
extern bool textTest;
extern bool enableFreeCamera;
extern int targetFrameRate;
extern bool unlockAllLive;
extern bool enableLiveCustomeDress;
extern std::string liveCustomeHeadId;
extern std::string liveCustomeCostumeId;
extern bool useCustomeGraphicSettings;
extern float renderScale;
extern int qualitySettingsLevel;
extern int volumeIndex;
extern int maxBufferPixel;
extern int reflectionQualityLevel;
extern int lodQualityLevel;
void LoadConfig(const std::string& configStr);
}
#endif //GAKUMAS_LOCALIFY_CONFIG_HPP