Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/Common/Minecraft_Utils.h
GabsPuNs 3fff023cad Fixes and implement WideToUtf8 and Utf8ToWide from Minecraft.Server
* MessageBox now uses WideToUtf8. This fixes RUS and ES languages.
* Fixed OnButtonClicked.
2026-06-14 17:26:03 -04:00

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;