2023-09-05 02:07:55 +01:00
|
|
|
#pragma once
|
|
|
|
#include <pu/Plutonium>
|
|
|
|
#include "ui/mainPage.hpp"
|
|
|
|
#include "ui/netInstPage.hpp"
|
2023-09-24 02:45:37 +01:00
|
|
|
#include "ui/ThemeInstPage.hpp"
|
2023-09-05 02:07:55 +01:00
|
|
|
#include "ui/sdInstPage.hpp"
|
|
|
|
#include "ui/HDInstPage.hpp"
|
|
|
|
#include "ui/usbInstPage.hpp"
|
|
|
|
#include "ui/instPage.hpp"
|
|
|
|
#include "ui/optionsPage.hpp"
|
|
|
|
|
|
|
|
namespace inst::ui {
|
|
|
|
class MainApplication : public pu::ui::Application {
|
|
|
|
public:
|
|
|
|
using Application::Application;
|
|
|
|
PU_SMART_CTOR(MainApplication)
|
|
|
|
void OnLoad() override;
|
|
|
|
MainPage::Ref mainPage;
|
|
|
|
netInstPage::Ref netinstPage;
|
2023-09-24 02:45:37 +01:00
|
|
|
ThemeInstPage::Ref ThemeinstPage;
|
2023-09-05 02:07:55 +01:00
|
|
|
sdInstPage::Ref sdinstPage;
|
|
|
|
HDInstPage::Ref HDinstPage;
|
|
|
|
usbInstPage::Ref usbinstPage;
|
|
|
|
instPage::Ref instpage;
|
|
|
|
optionsPage::Ref optionspage;
|
|
|
|
};
|
|
|
|
}
|