1111f691c6
Co-authored-by: n.fedorov <mail@nfedorov.dev> Co-committed-by: n.fedorov <mail@nfedorov.dev>
23 lines
504 B
C++
23 lines
504 B
C++
#pragma once
|
|
|
|
#include <pu/Plutonium>
|
|
|
|
#include <nxst/service/transfer_service.hpp>
|
|
#include <nxst/ui/titles_layout.hpp>
|
|
#include <nxst/ui/users_layout.hpp>
|
|
|
|
namespace ui {
|
|
|
|
class MainApplication : public pu::ui::Application {
|
|
|
|
public:
|
|
using Application::Application;
|
|
PU_SMART_CTOR(MainApplication)
|
|
|
|
void OnLoad() override;
|
|
|
|
UsersLayout::Ref users_layout;
|
|
TitlesLayout::Ref titles_layout;
|
|
nxst::TransferService transfer;
|
|
};
|
|
} // namespace ui
|