Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
425 B · 19 lines
C
at master
12345678910111213141516171819#pragma once
#include <string>
class Language{private: static Language *singleton;public: Language(); static Language *getInstance(); template<typename...Args> inline std::wstring getElement(const std::wstring& elementId, Args...) { return elementId; } std::wstring getElementName(const std::wstring& elementId); std::wstring getElementDescription(const std::wstring& elementId);};