mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-01 09:12:37 -06:00
15 lines
323 B
C++
15 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();
|
|
};
|