Files
jeweha_patch/string_replace_file.hpp
2025-03-11 12:47:55 +08:00

9 lines
185 B
C++

#include <unordered_map>
#include <string>
class StringReplaceFile {
public:
std::unordered_map<std::string, std::string> messages;
bool Load(std::string file);
};