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 // member functions
33 // NOLINTBEGIN
34 MCAPI EDUExternalScreenController(
35 ::std::shared_ptr<::MinecraftScreenModel> model,
36 ::std::function<void()> storageLocationChangedCallback,
37 ::std::function<uint64()> worldCountCallback
38 );
39
40 MCAPI bool _hasExternalStoragePermissions();
41
42 MCAPI void _openStoragePermissionWarningDialog();
43
44 MCAPI void _openSystemSettings();
45
46 MCAPI void _registerBindings();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(
53 ::std::shared_ptr<::MinecraftScreenModel> model,
54 ::std::function<void()> storageLocationChangedCallback,
55 ::std::function<uint64()> worldCountCallback
56 );
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
63
64 MCNAPI static void** $vftableForScreenController();
65 // NOLINTEND
66};
Definition EDUExternalScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5