mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2025-02-17 04:08:23 +00:00
13 lines
No EOL
326 B
C++
Executable file
13 lines
No EOL
326 B
C++
Executable file
#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;
|
|
};
|
|
} |