Skip to content

Commit

Permalink
Add blueprint plugin support
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Oct 1, 2024
1 parent 44201d7 commit cc5e0a9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/game_features/gameplugins.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ class GamePlugins : public details::GameFeatureCRTP<GamePlugins>
virtual void writePluginLists(const MOBase::IPluginList* pluginList) = 0;
virtual void readPluginLists(MOBase::IPluginList* pluginList) = 0;
virtual QStringList getLoadOrder() = 0;
virtual bool lightPluginsAreSupported() = 0;
virtual bool mediumPluginsAreSupported() = 0;
virtual bool lightPluginsAreSupported() { return false; }
virtual bool mediumPluginsAreSupported() { return false; }
virtual bool blueprintPluginsAreSupported() { return false; }
};

} // namespace MOBase
Expand Down

0 comments on commit cc5e0a9

Please sign in to comment.