LeviLamina
Loading...
Searching...
No Matches
IPJoinScreenController.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#include "mc/client/gui/screens/controllers/ipjsc/Inputs.h"
8
9// auto generated forward declare list
10// clang-format off
12// clang-format on
13
15public:
16 // IPJoinScreenController inner types declare
17 // clang-format off
18 struct JoinData;
19 // clang-format on
20
21 // IPJoinScreenController inner types define
22 enum class JoinRequest : uchar {
23 JoinWorld = 0,
24 Cancel = 1,
25 };
26
27 struct JoinData {
28 public:
29 // member variables
30 // NOLINTBEGIN
31 ::ll::TypedStorage<8, 32, ::std::string> netherNetId;
32 // NOLINTEND
33
34 public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI ~JoinData();
38 // NOLINTEND
39
40 public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCFOLD void $dtor();
44 // NOLINTEND
45 };
46
47 using OnIdJoin = ::std::function<::IPJoinScreenController::JoinRequest(::IPJoinScreenController::JoinData const&)>;
48
49public:
50 // member variables
51 // NOLINTBEGIN
52 ::ll::TypedStorage<8, 32, ::IPJoinScreenController::JoinData> mJoinData;
53 ::ll::TypedStorage<1, 1, ::IPJSC::Inputs> mHoveredInputs;
54 ::ll::TypedStorage<
55 8,
56 64,
57 ::std::function<::IPJoinScreenController::JoinRequest(::IPJoinScreenController::JoinData const&)>>
58 mOnIdJoin;
59 ::ll::TypedStorage<8, 32, ::std::string> mHeaderText;
60 // NOLINTEND
61
62public:
63 // prevent constructor by default
64 IPJoinScreenController();
65
66public:
67 // virtual functions
68 // NOLINTBEGIN
69 virtual ~IPJoinScreenController() /*override*/ = default;
70 // NOLINTEND
71
72public:
73 // member functions
74 // NOLINTBEGIN
75 MCAPI IPJoinScreenController(
76 ::std::shared_ptr<::MinecraftScreenModel> model,
77 ::std::function<::IPJoinScreenController::JoinRequest(::IPJoinScreenController::JoinData const&)> onIdJoin
78 );
79
80 MCAPI void _registerEventHandlers();
81 // NOLINTEND
82
83public:
84 // constructor thunks
85 // NOLINTBEGIN
86 MCAPI void* $ctor(
87 ::std::shared_ptr<::MinecraftScreenModel> model,
88 ::std::function<::IPJoinScreenController::JoinRequest(::IPJoinScreenController::JoinData const&)> onIdJoin
89 );
90 // NOLINTEND
91
92public:
93 // vftables
94 // NOLINTBEGIN
96
97 MCNAPI static void** $vftableForScreenController();
98 // NOLINTEND
99};
Definition IPJoinScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5
Definition IPJoinScreenController.h:15