LeviLamina
Loading...
Searching...
No Matches
RealmsPermissions.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 LocalPlayer;
14class SceneFactory;
15namespace OreUI { class RouteMatcher; }
16// clang-format on
17
18namespace OreUI::EntryPoints {
19
20class RealmsPermissions : public ::OreUI::IEntryPoint {
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 64, ::std::function<::LocalPlayer*()>> mGetPrimaryLocalPlayer;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 RealmsPermissions();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual void addToMatcher(
35 ::OreUI::RouteMatcher& routeMatcher,
36 ::SceneFactory& sceneFactory,
37 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
38 ) const /*override*/;
39
40 virtual bool shouldAddToConfiguration() const /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI explicit RealmsPermissions(::std::function<::LocalPlayer*()> getPrimaryLocalPlayer);
47 // NOLINTEND
48
49public:
50 // static variables
51 // NOLINTBEGIN
52 MCAPI static ::std::add_lvalue_reference_t<char const[]> BASE_ID();
53
54 MCAPI static ::OreUI::EntryPoints::RouteFlags const& FLAGS();
55
56 MCAPI static ::std::add_lvalue_reference_t<char const[]> ROUTE();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(::std::function<::LocalPlayer*()> getPrimaryLocalPlayer);
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI void $addToMatcher(
69 ::OreUI::RouteMatcher& routeMatcher,
70 ::SceneFactory& sceneFactory,
71 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
72 ) const;
73
74 MCFOLD bool $shouldAddToConfiguration() const;
75 // NOLINTEND
76
77public:
78 // vftables
79 // NOLINTBEGIN
80 MCNAPI static void** $vftable();
81 // NOLINTEND
82};
83
84} // namespace OreUI::EntryPoints
Definition ISceneStack.h:5
Definition LocalPlayer.h:5
Definition RealmsPermissions.h:7
Definition RouteMatcher.h:7
Definition SceneFactory.h:5