LeviLamina
Loading...
Searching...
No Matches
ISignalingInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/nether_net/ESessionError.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock::PubSub { class Subscription; }
11namespace NetherNet { struct ISignalingEventHandler; }
12namespace NetherNet { struct NetworkID; }
13// clang-format on
14
15namespace NetherNet {
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual ~ISignalingInterface() = default;
22
23 virtual void
24 SendSignal(::NetherNet::NetworkID, ::std::string const&, ::std::function<void(::NetherNet::ESessionError)>&&) = 0;
25
26 virtual ::Bedrock::PubSub::Subscription RegisterEventHandler(::NetherNet::ISignalingEventHandler*) = 0;
27 // NOLINTEND
28
29public:
30 // virtual function thunks
31 // NOLINTBEGIN
32
33 // NOLINTEND
34};
35
36} // namespace NetherNet
Definition Subscription.h:10
Definition ISignalingInterface.h:17
Definition ISignalingEventHandler.h:12
Definition NetworkID.h:17