LeviLamina
Loading...
Searching...
No Matches
DebugScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/DirtyFlag.h"
7#include "mc/client/gui/GameEventNotification.h"
8#include "mc/client/gui/screens/controllers/MinecraftScreenController.h"
9#include "mc/deps/core/utility/pub_sub/Subscription.h"
10#include "mc/util/BasicToggle.h"
11
12// auto generated forward declare list
13// clang-format off
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 3, ::BasicToggle> mIsVisible;
22 ::ll::TypedStorage<1, 1, bool> mOptionEnabled;
23 ::ll::TypedStorage<1, 3, ::BasicToggle> mConsoleIsShowing;
24 ::ll::TypedStorage<1, 1, bool> mDirty;
25 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mDevConsoleOptionSubscription;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 DebugScreenController();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~DebugScreenController() /*override*/ = default;
36
37 virtual void onOpen() /*override*/;
38
39 virtual void onTerminate() /*override*/;
40
41 virtual ::ui::DirtyFlag tick() /*override*/;
42
43 virtual ::ui::DirtyFlag handleGameEventNotification(::ui::GameEventNotification notification) /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCAPI explicit DebugScreenController(::std::shared_ptr<::MinecraftScreenModel> model);
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor(::std::shared_ptr<::MinecraftScreenModel> model);
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI void $onOpen();
62
63 MCFOLD void $onTerminate();
64
65 MCAPI ::ui::DirtyFlag $tick();
66
67 MCAPI ::ui::DirtyFlag $handleGameEventNotification(::ui::GameEventNotification notification);
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
74
75 MCNAPI static void** $vftableForScreenController();
76 // NOLINTEND
77};
Definition DebugScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5