mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-16 04:59:17 +01:00
12 lines
324 B
C++
12 lines
324 B
C++
#pragma once
|
|
|
|
#include <wums.h>
|
|
#include "ModuleData.h"
|
|
|
|
class ModuleDataPersistence {
|
|
public:
|
|
static bool saveModuleData(module_information_t *moduleInformation, const std::shared_ptr<ModuleData> &module);
|
|
|
|
static std::vector<std::shared_ptr<ModuleData>> loadModuleData(module_information_t *moduleInformation);
|
|
};
|