aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/oblivion/oblivionscriptextender.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/game_bethesda/src/games/oblivion/oblivionscriptextender.cpp')
-rw-r--r--libs/game_bethesda/src/games/oblivion/oblivionscriptextender.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/oblivion/oblivionscriptextender.cpp b/libs/game_bethesda/src/games/oblivion/oblivionscriptextender.cpp
new file mode 100644
index 0000000..f021a2e
--- /dev/null
+++ b/libs/game_bethesda/src/games/oblivion/oblivionscriptextender.cpp
@@ -0,0 +1,20 @@
+#include "oblivionscriptextender.h"
+
+#include <QString>
+#include <QStringList>
+
+OblivionScriptExtender::OblivionScriptExtender(GameGamebryo const* game)
+ : GamebryoScriptExtender(game)
+{}
+
+OblivionScriptExtender::~OblivionScriptExtender() {}
+
+QString OblivionScriptExtender::BinaryName() const
+{
+ return "obse_loader.exe";
+}
+
+QString OblivionScriptExtender::PluginPath() const
+{
+ return "obse/plugins";
+}