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