mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-05 15:55:07 +01:00
11 lines
304 B
C
11 lines
304 B
C
|
#pragma once
|
||
|
|
||
|
#include "common/module_defines.h"
|
||
|
#include "ModuleData.h"
|
||
|
|
||
|
class ModuleDataPersistence {
|
||
|
public:
|
||
|
static bool saveModuleData(module_information_t * moduleInformation, ModuleData * module);
|
||
|
static std::vector<ModuleData*> loadModuleData(module_information_t * moduleInformation);
|
||
|
};
|