LeviLamina
Loading...
Searching...
No Matches
UDPProxyClientResultHandler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace RakNet { class UDPProxyClient; }
8namespace RakNet { struct RakNetGUID; }
9namespace RakNet { struct SystemAddress; }
10// clang-format on
11
12namespace RakNet {
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~UDPProxyClientResultHandler() = default;
20
21 // vIndex: 1
22 virtual void OnForwardingSuccess(
23 char const*,
24 ushort,
30 ) = 0;
31
32 // vIndex: 2
33 virtual void OnForwardingNotification(
34 char const*,
35 ushort,
41 ) = 0;
42
43 // vIndex: 3
44 virtual void OnNoServersOnline(
50 ) = 0;
51
52 // vIndex: 4
53 virtual void OnRecipientNotConnected(
59 ) = 0;
60
61 // vIndex: 5
62 virtual void OnAllServersBusy(
68 ) = 0;
69
70 // vIndex: 6
71 virtual void OnForwardingInProgress(
72 char const*,
73 ushort,
79 ) = 0;
80 // NOLINTEND
81
82public:
83 // virtual function thunks
84 // NOLINTBEGIN
85
86 // NOLINTEND
87};
88
89} // namespace RakNet
Definition UDPProxyClient.h:16
Definition RakNetGUID.h:7
Definition SystemAddress.h:7
Definition UDPProxyClientResultHandler.h:14