mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-24 17:02:22 +00:00
14 lines
323 B
C++
14 lines
323 B
C++
#pragma once
|
|
|
|
struct ModLoader
|
|
{
|
|
static inline bool s_isLogTypeConsole;
|
|
|
|
static inline std::filesystem::path s_saveFilePath;
|
|
|
|
static std::filesystem::path ResolvePath(std::string_view path);
|
|
|
|
static std::vector<std::filesystem::path>* GetIncludeDirectories(size_t modIndex);
|
|
|
|
static void Init();
|
|
};
|