aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/I18n.h
blob: f459f4debe1ab9ac4324ac0bd0549cb83468d071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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)...);
	}
};