mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-23 12:13:11 +00:00
13 lines
326 B
C++
13 lines
326 B
C++
|
#pragma once
|
||
|
#include <pu/Plutonium>
|
||
|
#include "ui/mainPage.hpp"
|
||
|
|
||
|
namespace inst::ui {
|
||
|
class MainApplication : public pu::ui::Application {
|
||
|
public:
|
||
|
using Application::Application;
|
||
|
PU_SMART_CTOR(MainApplication)
|
||
|
void OnLoad() override;
|
||
|
MainPage::Ref mainPage;
|
||
|
};
|
||
|
}
|