mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-18 02:39:20 +01:00
2705a91c13
- Function replacements are not implemented yet - Serveral features like the config menu are missing Still WIP
11 lines
315 B
C++
11 lines
315 B
C++
#pragma once
|
|
|
|
#include "common/plugin_defines.h"
|
|
#include "PluginContainer.h"
|
|
|
|
class PluginContainerPersistence {
|
|
public:
|
|
static bool savePlugin(plugin_information_t * pluginInformation, PluginContainer& plugin);
|
|
static std::vector<PluginContainer> loadPlugins(plugin_information_t * pluginInformation);
|
|
};
|