mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 19:41:49 +00:00
19 lines
416 B
C++
19 lines
416 B
C++
|
#pragma once
|
||
|
|
||
|
#include <borealis.hpp>
|
||
|
|
||
|
class HideTabsPage : public brls::AppletFrame
|
||
|
{
|
||
|
private:
|
||
|
brls::List* list;
|
||
|
brls::Label* label;
|
||
|
brls::ToggleListItem* about;
|
||
|
brls::ToggleListItem* ams;
|
||
|
brls::ToggleListItem* cfws;
|
||
|
brls::ToggleListItem* sigpatches;
|
||
|
brls::ToggleListItem* fws;
|
||
|
brls::ToggleListItem* cheats;
|
||
|
|
||
|
public:
|
||
|
HideTabsPage();
|
||
|
};
|