LeviLamina
Loading...
Searching...
No Matches
Persona.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; }
14// clang-format on
15
16namespace OreUI::EntryPoints {
17
18class Persona : public ::OreUI::IEntryPoint {
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual bool shouldAddToConfiguration() const /*override*/;
23
24 virtual void addToMatcher(
25 ::OreUI::RouteMatcher& routeMatcher,
26 ::SceneFactory& sceneFactory,
27 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
28 ) const /*override*/;
29
30 virtual ~Persona() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // static functions
35 // NOLINTBEGIN
36 MCAPI static ::std::string composeRoute(::std::string const& itemId);
37 // NOLINTEND
38
39public:
40 // static variables
41 // NOLINTBEGIN
42 MCAPI static ::std::add_lvalue_reference_t<char const[]> ITEM_ID();
43
44 MCAPI static ::std::add_lvalue_reference_t<char const[]> ROUTE();
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCFOLD bool $shouldAddToConfiguration() const;
51
52 MCAPI void $addToMatcher(
53 ::OreUI::RouteMatcher& routeMatcher,
54 ::SceneFactory& sceneFactory,
55 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
56 ) const;
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
65
66} // namespace OreUI::EntryPoints
Definition ISceneStack.h:5
Definition Persona.h:7
static MCAPI void ** $vftable()
Definition RouteMatcher.h:7
Definition SceneFactory.h:5