Files
DarkStore/include/lang/lang.hpp
T
2019-10-31 03:23:05 +01:00

13 lines
183 B
C++

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