LeviLamina
Loading...
Searching...
No Matches
DeathScreen.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 DeathScreen : 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 DeathScreen& operator=(DeathScreen const&);
29 DeathScreen(DeathScreen const&);
30 DeathScreen();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual bool shouldAddToConfiguration() const /*override*/;
36
37 virtual void addToMatcher(
38 ::OreUI::RouteMatcher& routeMatcher,
39 ::SceneFactory& sceneFactory,
40 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
41 ) const /*override*/;
42
43 virtual ~DeathScreen() /*override*/ = default;
44 // NOLINTEND
45
46public:
47 // static functions
48 // NOLINTBEGIN
49 MCFOLD static bool isSelected();
50
51 MCFOLD static bool isSupported();
52 // NOLINTEND
53
54public:
55 // static variables
56 // NOLINTBEGIN
57 MCAPI static ::std::add_lvalue_reference_t<char const[]> BASE_SCREEN_ID();
58
59 MCAPI static ::std::add_lvalue_reference_t<char const[]> ROUTE();
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65 MCAPI bool $shouldAddToConfiguration() const;
66
67 MCAPI void $addToMatcher(
68 ::OreUI::RouteMatcher& routeMatcher,
69 ::SceneFactory& sceneFactory,
70 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
71 ) 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 DeathScreen.h:7
static MCAPI void ** $vftable()
Definition RouteMatcher.h:7
Definition SceneFactory.h:5
Definition ScreenTechStackSelector.h:7