mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-09 23:32:57 +00:00
* MessageBox now uses WideToUtf8. This fixes RUS and ES languages. * Fixed OnButtonClicked.
15 lines
273 B
C++
15 lines
273 B
C++
#pragma once
|
|
|
|
class CMinecraftUtils
|
|
{
|
|
public:
|
|
CMinecraftUtils();
|
|
|
|
fs::path GetExeDir();
|
|
std::string WideToUtf8(const std::wstring &value);
|
|
std::wstring Utf8ToWide(const char *value);
|
|
std::wstring Utf8ToWide(const std::string &value);
|
|
};
|
|
|
|
extern CMinecraftUtils utils;
|