mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-14 16:07:19 +00:00
24 lines
No EOL
640 B
C++
Executable file
24 lines
No EOL
640 B
C++
Executable file
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace inst::config {
|
|
static const std::string appDir = "sdmc:/switch/Awoo-Installer";
|
|
static const std::string configPath = appDir + "/config.json";
|
|
static const std::string appVersion = "1.3.2";
|
|
|
|
extern std::string gAuthKey;
|
|
extern std::string sigPatchesUrl;
|
|
extern std::vector<std::string> updateInfo;
|
|
extern int languageSetting;
|
|
extern bool ignoreReqVers;
|
|
extern bool validateNCAs;
|
|
extern bool overClock;
|
|
extern bool deletePrompt;
|
|
extern bool autoUpdate;
|
|
extern bool gayMode;
|
|
extern bool usbAck;
|
|
|
|
void setConfig();
|
|
void parseConfig();
|
|
} |