LeviLamina
Loading...
Searching...
No Matches
EduExternalLinkScreenController.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/EduExternalLinkResourceUriState.h"
9#include "mc/client/gui/screens/controllers/MinecraftScreenController.h"
10
11// auto generated forward declare list
12// clang-format off
14// clang-format on
15
17public:
18 // EduExternalLinkScreenController inner types declare
19 // clang-format off
20 struct Capabilities;
21 // clang-format on
22
23 // EduExternalLinkScreenController inner types define
24 struct Capabilities {
25 public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<1, 1, bool> mExternalLinkEnabled;
29 // NOLINTEND
30 };
31
32public:
33 // member variables
34 // NOLINTBEGIN
35 ::ll::TypedStorage<1, 1, ::EduExternalLinkScreenController::Capabilities> mCapabilities;
36 ::ll::TypedStorage<1, 1, ::EduExternalLinkResourceUriState> mResourceUriState;
37 // NOLINTEND
38
39public:
40 // prevent constructor by default
41 EduExternalLinkScreenController();
42
43public:
44 // virtual functions
45 // NOLINTBEGIN
46 virtual ::ui::DirtyFlag handleGameEventNotification(::ui::GameEventNotification notification) /*override*/;
47
48 virtual ~EduExternalLinkScreenController() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI explicit EduExternalLinkScreenController(::std::shared_ptr<::MinecraftScreenModel> model);
55
56 MCAPI void _updateResourceUriState();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(::std::shared_ptr<::MinecraftScreenModel> model);
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI ::ui::DirtyFlag $handleGameEventNotification(::ui::GameEventNotification notification);
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftableForScreenController();
75
77 // NOLINTEND
78};
Definition EduExternalLinkScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5
Definition EduExternalLinkScreenController.h:13