mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
18 lines
361 B
C++
18 lines
361 B
C++
|
#pragma once
|
||
|
|
||
|
#include <borealis.hpp>
|
||
|
#include "app_page.hpp"
|
||
|
#include "exclude_page.hpp"
|
||
|
|
||
|
class CheatsPage : public brls::AppletFrame
|
||
|
{
|
||
|
private:
|
||
|
brls::List* list;
|
||
|
brls::ListItem* view;
|
||
|
brls::ListItem* deleteCheats;
|
||
|
brls::ListItem* exclude;
|
||
|
brls::StagedAppletFrame* stagedFrame;
|
||
|
|
||
|
public:
|
||
|
CheatsPage();
|
||
|
};
|