1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-20 22:13:40 +01:00
AIO-switch-updater/include/language_option_page.hpp

19 lines
375 B
C++
Raw Normal View History

#pragma once
#include <borealis.hpp>
#include "app_page.hpp"
#include "exclude_page.hpp"
class LanguageOptionPage : public brls::AppletFrame
{
private:
brls::List* list;
brls::ListItem* English;
brls::ListItem* Chinese;
2020-10-05 16:14:10 +01:00
brls::ListItem* French;
brls::StagedAppletFrame* stagedFrame;
public:
LanguageOptionPage();
};