LeviLamina
Loading...
Searching...
No Matches
DisconnectionScreenParams.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/connection/DisconnectFailReason.h"
7
8struct DisconnectionScreenParams {
9public:
10 // member variables
11 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 DisconnectionScreenParams& operator=(DisconnectionScreenParams const&);
26 DisconnectionScreenParams(DisconnectionScreenParams const&);
27 DisconnectionScreenParams();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCNAPI explicit DisconnectionScreenParams(::Connection::DisconnectFailReason disconnectFailReason);
34
35 MCNAPI ~DisconnectionScreenParams();
36#endif
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42#ifdef LL_PLAT_C
43 MCNAPI void* $ctor(::Connection::DisconnectFailReason disconnectFailReason);
44#endif
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50#ifdef LL_PLAT_C
51 MCNAPI void $dtor();
52#endif
53 // NOLINTEND
54};
Definition Alias.h:14