the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include <string>
4
5class Language
6{
7private:
8 static Language *singleton;
9public:
10 Language();
11 static Language *getInstance();
12 template<typename...Args>
13 inline std::wstring getElement(const std::wstring& elementId, Args...)
14 {
15 return elementId;
16 }
17 std::wstring getElementName(const std::wstring& elementId);
18 std::wstring getElementDescription(const std::wstring& elementId);
19};