aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/starfield/starfieldscriptextender.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/game_bethesda/src/games/starfield/starfieldscriptextender.cpp')
-rw-r--r--libs/game_bethesda/src/games/starfield/starfieldscriptextender.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/starfield/starfieldscriptextender.cpp b/libs/game_bethesda/src/games/starfield/starfieldscriptextender.cpp
new file mode 100644
index 0000000..15cf6cd
--- /dev/null
+++ b/libs/game_bethesda/src/games/starfield/starfieldscriptextender.cpp
@@ -0,0 +1,18 @@
+#include "starfieldscriptextender.h"
+
+#include <QString>
+#include <QStringList>
+
+StarfieldScriptExtender::StarfieldScriptExtender(GameGamebryo const* game)
+ : GamebryoScriptExtender(game)
+{}
+
+QString StarfieldScriptExtender::BinaryName() const
+{
+ return "sfse_loader.exe";
+}
+
+QString StarfieldScriptExtender::PluginPath() const
+{
+ return "sfse/plugins";
+}