LeviLamina
Loading...
Searching...
No Matches
EDUExternalScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/controllers/MinecraftScreenController.h"
7
8// auto generated forward declare list
9// clang-format off
11// clang-format on
12
14public:
15 // EDUExternalScreenController inner types define
16 using StorageLocationChangedCallback = ::std::function<void()>;
17
18 using WorldCountCallback = ::std::function<uint64()>;
19
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 64, ::std::function<uint64()>> mWorldCountCallback;
24 ::ll::TypedStorage<8, 64, ::std::function<void()>> mStorageLocationChangedCallback;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 EDUExternalScreenController();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~EDUExternalScreenController() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI EDUExternalScreenController(
41 ::std::shared_ptr<::MinecraftScreenModel> model,
42 ::std::function<void()> storageLocationChangedCallback,
43 ::std::function<uint64()> worldCountCallback
44 );
45
46 MCAPI void _openStoragePermissionWarningDialog();
47
48 MCAPI void _registerBindings();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(
55 ::std::shared_ptr<::MinecraftScreenModel> model,
56 ::std::function<void()> storageLocationChangedCallback,
57 ::std::function<uint64()> worldCountCallback
58 );
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
65
66 MCNAPI static void** $vftableForScreenController();
67 // NOLINTEND
68};
Definition EDUExternalScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5