4jcraft/targets/minecraft/locale/I18n.h
2026-04-01 18:17:44 -05:00

19 lines
273 B
C++

#pragma once
#include <stdarg.h>
#include <string>
#include "Language.h"
class Language;
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);
};