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
33 // NOLINTEND
34
35 public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCNAPI_C void $dtor();
39 // NOLINTEND
40 };
41
42public:
43 // member variables
44 // NOLINTBEGIN
65 // NOLINTEND
66
67public:
68 // prevent constructor by default
69 ThirdPartyServer& operator=(ThirdPartyServer const&);
70 ThirdPartyServer(ThirdPartyServer const&);
71 ThirdPartyServer();
72
73public:
74 // member functions
75 // NOLINTBEGIN
76
77 // NOLINTEND
78
79public:
80 // constructor thunks
81 // NOLINTBEGIN
82 MCNAPI_C void* $ctor();
83 // NOLINTEND
84
85public:
86 // destructor thunk
87 // NOLINTBEGIN
88 MCNAPI_C void $dtor();
89 // NOLINTEND
90};
Definition ThirdPartyServer.h:13
Definition Alias.h:14