Files
DarkStore/include/lang/lang.hpp
T
2020-04-09 04:06:02 +02:00

13 lines
191 B
C++

#ifndef LANG_HPP
#define LANG_HPP
#include "json.hpp"
#include <string>
namespace Lang {
std::string get(const std::string &key);
void load(const std::string lang);
}
#endif