LeviLamina
Loading...
Searching...
No Matches
LoginPacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10struct LoginPacketPayload {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<4, 4, int> mClientNetworkVersion;
15 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ConnectionRequest>> mConnectionRequest;
16 // NOLINTEND
17
18#ifdef LL_PLAT_S
19#else // LL_PLAT_C
20public:
21 // prevent constructor by default
22 LoginPacketPayload();
23
24#endif
25public:
26 // member functions
27 // NOLINTBEGIN
28#ifdef LL_PLAT_C
29 MCAPI LoginPacketPayload(int clientVersion, ::ConnectionRequest const& connectionRequest);
30#endif
31
32 MCAPI ~LoginPacketPayload();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCAPI void* $ctor(int clientVersion, ::ConnectionRequest const& connectionRequest);
40#endif
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCFOLD void $dtor();
47 // NOLINTEND
48};
Definition ConnectionRequest.h:20