aboutsummaryrefslogtreecommitdiff
path: root/base/plugins.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/plugins.h')
-rw-r--r--base/plugins.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/plugins.h b/base/plugins.h
index bfeb68ae2d..1daa426202 100644
--- a/base/plugins.h
+++ b/base/plugins.h
@@ -320,6 +320,7 @@ public:
// Functions used only by the cached PluginManager
virtual void loadAllPlugins();
+ virtual void loadAllPluginsOfType(PluginType type);
void unloadAllPlugins();
void unloadPluginsExcept(PluginType type, const Plugin *plugin, bool deletePlugin = true);
@@ -347,7 +348,8 @@ public:
virtual bool loadPluginFromGameId(const Common::String &gameId);
virtual void updateConfigWithFileName(const Common::String &gameId);
- virtual void loadAllPlugins() {} // we don't allow this
+ virtual void loadAllPlugins() {} // we don't allow these
+ virtual void loadAllPluginsOfType(PluginType type) {}
};
#endif