添加字符串替换文件类,更新配置以支持字符串替换文件加载,修改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

8
string_replace_file.hpp Normal file
View File

@@ -0,0 +1,8 @@
#include <unordered_map>
#include <string>
class StringReplaceFile {
public:
std::unordered_map<std::string, std::string> messages;
bool Load(std::string file);
};