添加字符串替换文件类,更新配置以支持字符串替换文件加载,修改CMake配置以包含新文件

This commit is contained in:
2025-03-03 23:13:01 +08:00
parent 446f41deac
commit 165cdf1c96
46 changed files with 19162 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ class Config {
std::unordered_map<std::string, std::string> configs;
Config() {
configs["defaultFont"] = "微软雅黑";
configs["stringReplaceFile"] = "";
}
bool Load(std::string path);
};