aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Language.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/Language.h')
-rw-r--r--Minecraft.World/Language.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Minecraft.World/Language.h b/Minecraft.World/Language.h
new file mode 100644
index 00000000..10e2951f
--- /dev/null
+++ b/Minecraft.World/Language.h
@@ -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);
+}; \ No newline at end of file