mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2025-01-09 19:19:21 +01:00
18 lines
297 B
C++
18 lines
297 B
C++
#pragma once
|
|
|
|
#include "StorageSubItem.h"
|
|
|
|
#include <string>
|
|
|
|
class StorageItemRoot : public StorageSubItem {
|
|
public:
|
|
explicit StorageItemRoot(std::string_view plugin_name);
|
|
|
|
[[nodiscard]] const std::string &getPluginId() const;
|
|
|
|
void wipe();
|
|
|
|
private:
|
|
std::string mPluginName;
|
|
};
|