WiiUPluginLoaderBackend/source/utils/config/ConfigRendererItemCategory.h
2024-04-25 16:19:26 +02:00

17 lines
552 B
C++

#pragma once
#include "ConfigRendererItemGeneric.h"
#include "config/WUPSConfigCategory.h"
class ConfigRendererItemCategory : public ConfigRendererItemGeneric {
public:
explicit ConfigRendererItemCategory(const WUPSConfigAPIBackend::WUPSConfigCategory *category) : mCategory(category) {
assert(category);
}
void Draw(uint32_t yOffset, bool isHighlighted) const override {
drawGenericBoxAndText(yOffset, mCategory->getName(), isHighlighted);
}
private:
const WUPSConfigAPIBackend::WUPSConfigCategory *mCategory;
};