mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-25 20:24:42 +00:00
Trial code is almost cleaned. Consoles are now unused. stdafx unbloat for Minecraft.Client
14 lines
267 B
C++
14 lines
267 B
C++
#include "Minecraft_Utils.h"
|
|
|
|
CMinecraftUtils utils;
|
|
|
|
CMinecraftUtils::CMinecraftUtils()
|
|
{}
|
|
|
|
fs::path CMinecraftUtils::GetExeDir()
|
|
{
|
|
wchar_t szExePath[MAX_PATH] = {};
|
|
GetModuleFileNameW(nullptr, szExePath, MAX_PATH);
|
|
return fs::path(szExePath).parent_path();
|
|
}
|