prepare for color scheme import/export chamges

this includes a small refactor of the settings mechanism
This commit is contained in:
tildearrow 2023-12-21 18:14:28 -05:00
parent 231a76d50b
commit f46aa5cbfd
4 changed files with 451 additions and 420 deletions

View file

@ -167,4 +167,8 @@ void DivEngine::setConf(String key, String value) {
bool DivEngine::hasConf(String key) {
return conf.has(key);
}
}
DivConfig& DivEngine::getConfObject() {
return conf;
}