mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-09 11:28:43 +00:00
16 lines
243 B
C++
16 lines
243 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);
|
|
};
|