mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-21 18:24:34 +00:00
17 lines
242 B
C++
17 lines
242 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "Language.h"
|
|
|
|
class I18n
|
|
{
|
|
private:
|
|
static Language *lang;
|
|
|
|
public:
|
|
template<typename ...Args>
|
|
static wstring get(Args... args)
|
|
{
|
|
return lang->getElement(std::forward<Args>(args)...);
|
|
}
|
|
}; |