LeviLamina
Loading...
Searching...
No Matches
RealmsCreateScreen.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 IOfferRepository;
13class ISceneStack;
14class RealmsAPI;
15class SceneFactory;
17namespace OreUI { class RouteMatcher; }
18namespace Social { class IUserManager; }
19// clang-format on
20
21namespace OreUI::EntryPoints {
22
23class RealmsCreateScreen : public ::OreUI::IEntryPoint {
24public:
25 // member variables
26 // NOLINTBEGIN
27 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::Social::IUserManager> const> mUserManager;
28 ::ll::TypedStorage<8, 64, ::std::function<::Bedrock::NotNullNonOwnerPtr<::IOfferRepository>()>> mGetOfferRepository;
29 ::ll::TypedStorage<8, 64, ::std::function<::Bedrock::NotNullNonOwnerPtr<::SunsettingManager>()>>
30 mGetSunsettingManager;
31 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::RealmsAPI>> mRealms;
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 RealmsCreateScreen();
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 virtual bool shouldAddToConfiguration() const /*override*/;
42
43 virtual void addToMatcher(
44 ::OreUI::RouteMatcher& routeMatcher,
45 ::SceneFactory& sceneFactory,
46 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
47 ) const /*override*/;
48 // NOLINTEND
49
50public:
51 // member functions
52 // NOLINTBEGIN
53 MCAPI RealmsCreateScreen(
54 ::Bedrock::NotNullNonOwnerPtr<::Social::IUserManager> userManager,
55 ::std::function<::Bedrock::NotNullNonOwnerPtr<::IOfferRepository>()> getOfferRepository,
56 ::std::function<::Bedrock::NotNullNonOwnerPtr<::SunsettingManager>()> getSunsettingManager,
57 ::std::weak_ptr<::RealmsAPI> realms
58 );
59 // NOLINTEND
60
61public:
62 // static variables
63 // NOLINTBEGIN
64 MCAPI static ::std::add_lvalue_reference_t<char const[]> BASE_SCREEN_ID();
65
66 MCAPI static ::OreUI::EntryPoints::RouteFlags const& FLAGS();
67
68 MCAPI static ::std::add_lvalue_reference_t<char const[]> OFFER_TIER();
69
70 MCAPI static ::std::add_lvalue_reference_t<char const[]> REALM_NAME();
71
72 MCAPI static ::std::add_lvalue_reference_t<char const[]> ROUTE();
73
74 MCAPI static ::std::add_lvalue_reference_t<char const[]> SUBSCRIPTION_ID();
75 // NOLINTEND
76
77public:
78 // constructor thunks
79 // NOLINTBEGIN
80 MCAPI void* $ctor(
81 ::Bedrock::NotNullNonOwnerPtr<::Social::IUserManager> userManager,
82 ::std::function<::Bedrock::NotNullNonOwnerPtr<::IOfferRepository>()> getOfferRepository,
83 ::std::function<::Bedrock::NotNullNonOwnerPtr<::SunsettingManager>()> getSunsettingManager,
84 ::std::weak_ptr<::RealmsAPI> realms
85 );
86 // NOLINTEND
87
88public:
89 // virtual function thunks
90 // NOLINTBEGIN
91 MCFOLD bool $shouldAddToConfiguration() const;
92
93 MCAPI void $addToMatcher(
94 ::OreUI::RouteMatcher& routeMatcher,
95 ::SceneFactory& sceneFactory,
96 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
97 ) const;
98 // NOLINTEND
99
100public:
101 // vftables
102 // NOLINTBEGIN
103 MCNAPI static void** $vftable();
104 // NOLINTEND
105};
106
107} // namespace OreUI::EntryPoints
Definition ISceneStack.h:5
Definition RealmsCreateScreen.h:7
Definition RouteMatcher.h:7
Definition RealmsAPI.h:5
Definition SceneFactory.h:5
Definition IUserManager.h:7
Definition SunsettingManager.h:5