mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-01 21:17:44 -05:00
sys: Merge splash screen and ImHex into one application
This fixes so many issues the previous implementation had, especially on Unix
This commit is contained in:
@@ -44,16 +44,16 @@ namespace hex {
|
||||
};
|
||||
};
|
||||
|
||||
class PluginHandler {
|
||||
class PluginManager {
|
||||
public:
|
||||
PluginHandler() = delete;
|
||||
PluginManager() = delete;
|
||||
|
||||
static void load(std::string_view pluginFolder);
|
||||
static bool load(std::string_view pluginFolder);
|
||||
static void unload();
|
||||
static void reload();
|
||||
|
||||
static const auto& getPlugins() {
|
||||
return PluginHandler::s_plugins;
|
||||
return PluginManager::s_plugins;
|
||||
}
|
||||
|
||||
private:
|
||||
Reference in New Issue
Block a user