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 virtual ~UDPProxyClientResultHandler() = default;
19
20 virtual void OnForwardingSuccess(
21 char const*,
22 ushort,
28 ) = 0;
29
30 virtual void OnForwardingNotification(
31 char const*,
32 ushort,
38 ) = 0;
39
40 virtual void OnNoServersOnline(
46 ) = 0;
47
48 virtual void OnRecipientNotConnected(
54 ) = 0;
55
56 virtual void OnAllServersBusy(
62 ) = 0;
63
64 virtual void OnForwardingInProgress(
65 char const*,
66 ushort,
72 ) = 0;
73 // NOLINTEND
74
75public:
76 // virtual function thunks
77 // NOLINTBEGIN
78
79 // NOLINTEND
80};
81
82} // namespace RakNet
Definition UDPProxyClient.h:16
Definition RakNetGUID.h:7
Definition SystemAddress.h:7
Definition UDPProxyClientResultHandler.h:14