LeviLamina
Loading...
Searching...
No Matches
ILanEventHandler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace NetherNet::LanEvents { struct DiscoveryRequest; }
8namespace NetherNet::LanEvents { struct DiscoveryResponse; }
9namespace NetherNet::LanEvents { struct MessageReceived; }
10namespace NetherNet::LanEvents { struct MessageSent; }
11// clang-format on
12
13namespace NetherNet {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~ILanEventHandler() = default;
20
21 virtual void OnLanEvent(::NetherNet::LanEvents::MessageSent const&);
22
23 virtual void OnLanEvent(::NetherNet::LanEvents::MessageReceived const&);
24
25 virtual void OnLanEvent(::NetherNet::LanEvents::DiscoveryRequest const&);
26
27 virtual void OnLanEvent(::NetherNet::LanEvents::DiscoveryResponse const&);
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
34
35#ifdef LL_PLAT_C
37
39#endif
40
41
42 // NOLINTEND
43};
44
45} // namespace NetherNet
Definition ILanEventHandler.h:15
MCAPI void $OnLanEvent(::NetherNet::LanEvents::MessageSent const &)
Definition DiscoveryRequest.h:7
Definition DiscoveryResponse.h:7
Definition MessageReceived.h:7
Definition MessageSent.h:7