WiiUPluginLoaderBackend/source/utils/config/ConfigRendererItemCategory.h
2024-12-29 21:05:57 +01:00

30 lines
752 B
C++

#pragma once
//#include "ConfigRendererItemGeneric.h"
//#include "config/WUPSConfigCategory.h"
#include <cassert>
class ConfigRendererItemCategory final : 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);
}
void Update(bool) override {
}
[[nodiscard]] bool NeedsRedraw() const override {
return false;
}
void ResetNeedsRedraw() override {
}
private:
const WUPSConfigAPIBackend::WUPSConfigCategory *mCategory;
};