You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
296 B

#pragma once
#include <fs.hpp>
#include <json.hpp>
class config : public json {
static fs::path &get_config_path();
void create_config_directory();
void create_config_file(const fs::path &config_file_path);
void load_config_file(const fs::path &config_file_path);
public:
config();
};