4jcraft/targets/minecraft/locale/I18n.h

19 lines
269 B
C++

#pragma once
#include <stdarg.h>
#include <string>
#include "Language.h"
class Language;
class I18n {
private:
static Language* lang;
public:
static std::string get(std::string id, ...);
static std::string get(const std::string& id, va_list args);
};