LeviLamina
Loading...
Searching...
No Matches
UDPProxyServerResultHandler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace RakNet { class RakString; }
8namespace RakNet { class UDPProxyServer; }
9// clang-format on
10
11namespace RakNet {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~UDPProxyServerResultHandler() = default;
19
20 // vIndex: 1
21 virtual void OnLoginSuccess(::RakNet::RakString, ::RakNet::UDPProxyServer*) = 0;
22
23 // vIndex: 2
24 virtual void OnAlreadyLoggedIn(::RakNet::RakString, ::RakNet::UDPProxyServer*) = 0;
25
26 // vIndex: 3
27 virtual void OnNoPasswordSet(::RakNet::RakString, ::RakNet::UDPProxyServer*) = 0;
28
29 // vIndex: 4
30 virtual void OnWrongPassword(::RakNet::RakString, ::RakNet::UDPProxyServer*) = 0;
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
45
46} // namespace RakNet
Definition RakString.h:10
Definition UDPProxyServer.h:19
Definition UDPProxyServerResultHandler.h:13