LeviLamina
Loading...
Searching...
No Matches
ThirdPartyServer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class ThirdPartyServer {
6public:
7 // ThirdPartyServer inner types declare
8 // clang-format off
9 struct AvailableGame;
10 // clang-format on
11
12 // ThirdPartyServer inner types define
13 struct AvailableGame {
14 public:
15 // member variables
16 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 AvailableGame& operator=(AvailableGame const&);
26 AvailableGame(AvailableGame const&);
27 AvailableGame();
28
29 public:
30 // member functions
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCNAPI ~AvailableGame();
34#endif
35 // NOLINTEND
36
37 public:
38 // destructor thunk
39 // NOLINTBEGIN
40#ifdef LL_PLAT_C
41 MCNAPI void $dtor();
42#endif
43 // NOLINTEND
44 };
45
46public:
47 // member variables
48 // NOLINTBEGIN
69 // NOLINTEND
70
71#ifdef LL_PLAT_S
72public:
73 // prevent constructor by default
74 ThirdPartyServer& operator=(ThirdPartyServer const&);
75 ThirdPartyServer(ThirdPartyServer const&);
76 ThirdPartyServer();
77
78#else // LL_PLAT_C
79public:
80 // prevent constructor by default
81 ThirdPartyServer& operator=(ThirdPartyServer const&);
82 ThirdPartyServer(ThirdPartyServer const&);
83
84#endif
85public:
86 // member functions
87 // NOLINTBEGIN
88#ifdef LL_PLAT_C
89 MCNAPI ThirdPartyServer();
90
91 MCNAPI ~ThirdPartyServer();
92#endif
93 // NOLINTEND
94
95public:
96 // constructor thunks
97 // NOLINTBEGIN
98#ifdef LL_PLAT_C
99 MCNAPI void* $ctor();
100#endif
101 // NOLINTEND
102
103public:
104 // destructor thunk
105 // NOLINTBEGIN
106#ifdef LL_PLAT_C
107 MCNAPI void $dtor();
108#endif
109 // NOLINTEND
110};
Definition ThirdPartyServer.h:13
Definition Alias.h:14