diff options
Diffstat (limited to 'primedev/mods/modmanager.h')
-rw-r--r-- | primedev/mods/modmanager.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/primedev/mods/modmanager.h b/primedev/mods/modmanager.h index 95a8fe12..3df7fe53 100644 --- a/primedev/mods/modmanager.h +++ b/primedev/mods/modmanager.h @@ -11,8 +11,9 @@ namespace fs = std::filesystem; -const std::string MOD_FOLDER_SUFFIX = "\\mods"; -const std::string THUNDERSTORE_MOD_FOLDER_SUFFIX = "\\packages"; +const std::string CORE_MOD_FOLDER_SUFFIX = "\\mods\\core"; +const std::string MANUAL_MOD_FOLDER_SUFFIX = "\\mods\\manual"; +const std::string THUNDERSTORE_LEGACY_MOD_FOLDER_SUFFIX = "\\mods\\thunderstore-legacy"; const std::string REMOTE_MOD_FOLDER_SUFFIX = "\\runtime\\remote\\mods"; const fs::path MOD_OVERRIDE_DIR = "mod"; const std::string COMPILED_ASSETS_SUFFIX = "\\runtime\\compiled"; @@ -181,9 +182,10 @@ public: void BuildKBActionsList(); }; -fs::path GetModFolderPath(); +fs::path GetCoreModFolderPath(); +fs::path GetManualModFolderPath(); fs::path GetRemoteModFolderPath(); -fs::path GetThunderstoreModFolderPath(); +fs::path GetThunderstoreLegacyModFolderPath(); fs::path GetCompiledAssetsPath(); extern ModManager* g_pModManager; |