mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
27 lines
No EOL
496 B
C++
27 lines
No EOL
496 B
C++
#pragma once
|
|
|
|
#include <borealis.hpp>
|
|
#include <algorithm>
|
|
#include <set>
|
|
|
|
typedef struct app App;
|
|
|
|
enum class appPageType{
|
|
base,
|
|
cheatSlips,
|
|
gbatempCheats
|
|
};
|
|
|
|
class AppPage : public brls::AppletFrame
|
|
{
|
|
private:
|
|
brls::List* list;
|
|
brls::Label* label;
|
|
brls::ListItem* download;
|
|
brls::ListItem* listItem;
|
|
std::vector<App*> apps;
|
|
std::set<std::string> titles;
|
|
|
|
public:
|
|
AppPage(const appPageType type = appPageType::base);
|
|
}; |