mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-23 05:43:05 +00:00
15 lines
249 B
C++
15 lines
249 B
C++
#pragma once
|
|
|
|
|
|
#include "../Platform/stdafx.h"
|
|
#include "Language.h"
|
|
|
|
class I18n
|
|
{
|
|
private:
|
|
static Language *lang;
|
|
|
|
public:
|
|
static std::wstring get(const std::wstring& id, ...);
|
|
static std::wstring get(const std::wstring& id, va_list args);
|
|
}; |