LeviLamina
Loading...
Searching...
No Matches
SendInvitesScreen.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/routing/IEntryPoint.h"
7#include "mc/client/gui/oreui/routing/RouteFlags.h"
8#include "mc/deps/core/utility/NonOwnerPointer.h"
9
10// auto generated forward declare list
11// clang-format off
12class ISceneStack;
13class SceneFactory;
14namespace OreUI { class RouteMatcher; }
15namespace ui { class ScreenTechStackSelector; }
16// clang-format on
17
18namespace OreUI::EntryPoints {
19
20class SendInvitesScreen : public ::OreUI::IEntryPoint {
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 8, ::ui::ScreenTechStackSelector const&> mScreenTechStackSelector;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 SendInvitesScreen& operator=(SendInvitesScreen const&);
30 SendInvitesScreen(SendInvitesScreen const&);
31 SendInvitesScreen();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual void addToMatcher(
37 ::OreUI::RouteMatcher& routeMatcher,
38 ::SceneFactory& sceneFactory,
39 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
40 ) const /*override*/;
41
42 virtual bool shouldAddToConfiguration() const /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI explicit SendInvitesScreen(::ui::ScreenTechStackSelector const& screenTechStackSelector);
49 // NOLINTEND
50
51public:
52 // static variables
53 // NOLINTBEGIN
54 MCAPI static ::OreUI::EntryPoints::RouteFlags const& FLAGS();
55
56 MCAPI static ::std::add_lvalue_reference_t<char const[]> LEGACY_ROUTE();
57
58 MCAPI static ::std::add_lvalue_reference_t<char const[]> ROUTE();
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::ui::ScreenTechStackSelector const& screenTechStackSelector);
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCAPI void $addToMatcher(
71 ::OreUI::RouteMatcher& routeMatcher,
72 ::SceneFactory& sceneFactory,
73 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
74 ) const;
75
76 MCAPI bool $shouldAddToConfiguration() const;
77 // NOLINTEND
78
79public:
80 // vftables
81 // NOLINTBEGIN
82 MCNAPI static void** $vftable();
83 // NOLINTEND
84};
85
86} // namespace OreUI::EntryPoints
Definition ISceneStack.h:5
Definition SendInvitesScreen.h:7
Definition RouteMatcher.h:7
Definition SceneFactory.h:5
Definition ScreenTechStackSelector.h:7