Add files

This commit is contained in:
2025-03-11 12:47:55 +08:00
commit 34f6759532
63 changed files with 23666 additions and 0 deletions

12
config.hpp Normal file
View File

@@ -0,0 +1,12 @@
#include <unordered_map>
#include <string>
class Config {
public:
std::unordered_map<std::string, std::string> configs;
Config() {
configs["defaultFont"] = "微软雅黑";
configs["stringReplaceFile"] = "";
}
bool Load(std::string path);
};