mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-02 16:49:05 +00:00
13 lines
183 B
C++
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 |