1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-20 05:53:38 +01:00
AIO-switch-updater/include/language_option_page.hpp
2020-10-05 17:14:10 +02:00

19 lines
375 B
C++

#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;
brls::ListItem* French;
brls::StagedAppletFrame* stagedFrame;
public:
LanguageOptionPage();
};