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

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);
};