a LOT of new stuff
This commit is contained in:
20
src/config.h
Normal file
20
src/config.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
#include <json.hpp>
|
||||
#include <fstream>
|
||||
#include <spdlog/spdlog.h>
|
||||
#include <filesystem>
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
|
||||
using nlohmann::json;
|
||||
|
||||
namespace config {
|
||||
void load(std::string path);
|
||||
void startAutoSave();
|
||||
void stopAutoSave();
|
||||
|
||||
extern bool configModified;
|
||||
extern json config;
|
||||
};
|
||||
Reference in New Issue
Block a user