diff options
Diffstat (limited to 'libs/game_bethesda/src/games/falloutnv/falloutnvscriptextender.cpp')
| -rw-r--r-- | libs/game_bethesda/src/games/falloutnv/falloutnvscriptextender.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/falloutnv/falloutnvscriptextender.cpp b/libs/game_bethesda/src/games/falloutnv/falloutnvscriptextender.cpp new file mode 100644 index 0000000..fc00c31 --- /dev/null +++ b/libs/game_bethesda/src/games/falloutnv/falloutnvscriptextender.cpp @@ -0,0 +1,18 @@ +#include "falloutnvscriptextender.h" + +#include <QString> +#include <QStringList> + +FalloutNVScriptExtender::FalloutNVScriptExtender(GameGamebryo const* game) + : GamebryoScriptExtender(game) +{} + +QString FalloutNVScriptExtender::BinaryName() const +{ + return "nvse_loader.exe"; +} + +QString FalloutNVScriptExtender::PluginPath() const +{ + return "nvse/plugins"; +} |
