From 614a8d306cdf2abb28a03e8152081a10a0594d43 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 7 Jan 2023 19:20:56 +0000 Subject: [PATCH] Add missing doxygen doc comment --- include/loot/game_interface.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/loot/game_interface.h b/include/loot/game_interface.h index 87b31aa1..aa6cbab6 100644 --- a/include/loot/game_interface.h +++ b/include/loot/game_interface.h @@ -154,7 +154,12 @@ public: virtual bool IsLoadOrderAmbiguous() const = 0; /** - * + * @brief Gets the path to the file that holds the list of active plugins. + * @details The active plugins file path is often within the game's local + path, but its name and location varies by game and game + configuration, so this function exposes the path that libloot + uses. + * @returns The file path. */ virtual std::filesystem::path GetActivePluginsFilePath() const = 0;