Files
DarkStore/include/lang/lang.hpp
T
StackZ 09be8e0b94 Switch over to Universal-Core. (#18)
* Don't build here.

* WIP: Switch to Universal-Core.

* Update Submodule repo & azure-pipelines.
2020-02-08 06:20:50 +01:00

13 lines
177 B
C++

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