mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-23 04:03:10 +00:00
23 lines
No EOL
677 B
C++
Executable file
23 lines
No EOL
677 B
C++
Executable file
#pragma once
|
|
#include <pu/Plutonium>
|
|
#include "ui/mainPage.hpp"
|
|
#include "ui/netInstPage.hpp"
|
|
#include "ui/nspInstPage.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;
|
|
nspInstPage::Ref nspinstPage;
|
|
usbInstPage::Ref usbinstPage;
|
|
instPage::Ref instpage;
|
|
optionsPage::Ref optionspage;
|
|
};
|
|
} |