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