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 MCAPI RemoteClient();
28
29 MCAPI void SendOrBuffer(char const** data, uint const* lengths, int numParameters);
30
31 MCAPI ~RemoteClient();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor();
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCAPI void $dtor();
44 // NOLINTEND
45};
46
47} // namespace RakNet
Definition RemoteClient.h:7
Definition Alias.h:14