4jcraft/Minecraft.World/Util/I18n.h
2026-03-13 17:06:56 -05:00

14 lines
248 B
C++

#pragma once
#include "../Platform/stdafx.h"
#include "Language.h"
class I18n {
private:
static Language* lang;
public:
static std::wstring get(std::wstring id, ...);
static std::wstring get(const std::wstring& id, va_list args);
};