LeviLamina
Loading...
Searching...
No Matches
ReadyEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/raknet/PI2_LostConnectionReason.h"
7#include "mc/deps/raknet/PluginInterface2.h"
8#include "mc/deps/raknet/PluginReceiveResult.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace RakNet { struct Packet; }
13namespace RakNet { struct RakNetGUID; }
14namespace RakNet { struct SystemAddress; }
15// clang-format on
16
17namespace RakNet {
18
19class ReadyEvent : public ::RakNet::PluginInterface2 {
20public:
21 // ReadyEvent inner types declare
22 // clang-format off
23 struct RemoteSystem;
24 struct ReadyEventNode;
25 // clang-format on
26
27 // ReadyEvent inner types define
28 struct RemoteSystem {
29 public:
30 // member variables
31 // NOLINTBEGIN
35 // NOLINTEND
36
37 public:
38 // prevent constructor by default
39 RemoteSystem& operator=(RemoteSystem const&);
40 RemoteSystem(RemoteSystem const&);
41 RemoteSystem();
42 };
43
44 struct ReadyEventNode {
45 public:
46 // member variables
47 // NOLINTBEGIN
51 // NOLINTEND
52
53 public:
54 // prevent constructor by default
55 ReadyEventNode& operator=(ReadyEventNode const&);
56 ReadyEventNode(ReadyEventNode const&);
57 ReadyEventNode();
58 };
59
60public:
61 // member variables
62 // NOLINTBEGIN
65 // NOLINTEND
66
67public:
68 // prevent constructor by default
69 ReadyEvent& operator=(ReadyEvent const&);
70 ReadyEvent(ReadyEvent const&);
71 ReadyEvent();
72
73public:
74 // virtual functions
75 // NOLINTBEGIN
76 virtual ~ReadyEvent() /*override*/ = default;
77
78 virtual ::RakNet::PluginReceiveResult OnReceive(::RakNet::Packet*) /*override*/;
79
80 virtual void OnClosedConnection(
83 ::RakNet::PI2_LostConnectionReason
84 ) /*override*/;
85
86 virtual void OnRakPeerShutdown() /*override*/;
87 // NOLINTEND
88
89public:
90 // virtual function thunks
91 // NOLINTBEGIN
92
93 // NOLINTEND
94};
95
96} // namespace RakNet
Definition PluginInterface2.h:20
Definition Packet.h:7
Definition RakNetGUID.h:7
Definition ReadyEvent.h:44
Definition ReadyEvent.h:28
Definition SystemAddress.h:7
Definition Alias.h:14