Files
jewena_patch/string_replace_file.hpp

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