Faucet/Minecraft.World/I18n.h
2026-03-09 16:37:23 +11:00

18 lines
262 B
C++

#pragma once
using namespace std;
#include "stdafx.h"
#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)...);
}
};