mirror of
https://github.com/joel16/NX-Shell.git
synced 2024-11-23 11:49:46 +00:00
19 lines
289 B
C++
19 lines
289 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <switch.h>
|
|
|
|
typedef struct {
|
|
int lang = 1;
|
|
bool dev_options = false;
|
|
bool image_filename = false;
|
|
} config_t;
|
|
|
|
extern config_t cfg;
|
|
extern char cwd[FS_MAX_PATH];
|
|
|
|
namespace Config {
|
|
int Save(config_t &config);
|
|
int Load(void);
|
|
}
|