LeviLamina
Loading...
Searching...
No Matches
RakNetSocket2.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace RakNet { struct RNS2_SendParameters; }
8// clang-format on
9
10namespace RakNet {
11
12class RakNetSocket2 : public ::std::enable_shared_from_this<::RakNet::RakNetSocket2> {
13public:
14 // member variables
15 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 RakNetSocket2& operator=(RakNetSocket2 const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~RakNetSocket2() = default;
34
35 // vIndex: 1
36 virtual int Send(::RakNet::RNS2_SendParameters*, char const*, uint) = 0;
37
38 // vIndex: 2
39 virtual void SetMulticastInterface(int interfaceIndex);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCFOLD void $SetMulticastInterface(int interfaceIndex);
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
60
61} // namespace RakNet
Definition RakNetSocket2.h:12
Definition RNS2_SendParameters.h:7
Definition Alias.h:14