first commit
This commit is contained in:
14
Minecraft.World/Language.h
Normal file
14
Minecraft.World/Language.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
class Language
|
||||
{
|
||||
private:
|
||||
static Language *singleton;
|
||||
public:
|
||||
Language();
|
||||
static Language *getInstance();
|
||||
wstring getElement(const wstring& elementId, ...);
|
||||
wstring getElement(const wstring& elementId, va_list args);
|
||||
wstring getElementName(const wstring& elementId);
|
||||
wstring getElementDescription(const wstring& elementId);
|
||||
};
|
||||
Reference in New Issue
Block a user