LeviLamina
Loading...
Searching...
No Matches
RemoteClient.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
8public:
9 // member variables
10 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 RemoteClient& operator=(RemoteClient const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI RemoteClient();
28
29 MCNAPI void SendOrBuffer(char const** data, uint const* lengths, int numParameters);
30
31 MCNAPI ~RemoteClient();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCNAPI void* $ctor();
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCNAPI void $dtor();
44 // NOLINTEND
45};
46
47} // namespace RakNet
Definition RemoteClient.h:7
MCAPI void * $ctor()
MCAPI void SendOrBuffer(char const **data, uint const *lengths, int numParameters)
MCAPI void $dtor()
Definition Alias.h:14