LeviLamina
Loading...
Searching...
No Matches
NetherNetTransportServerConfiguration.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace NetherNet {
6
8public:
9 // NetherNetTransportServerConfiguration inner types define
10 enum class SignalingHost : uchar {
11 WebSocket = 0,
12 Deferred = 1,
13 TcpClientPrototype = 2,
14 TcpServerPrototype = 3,
15 None = 4,
16 };
17
18public:
19 // member variables
20 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
35
36public:
37 // member functions
38 // NOLINTBEGIN
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCAPI void $dtor();
46 // NOLINTEND
47};
48
49} // namespace NetherNet
Definition NetherNetTransportServerConfiguration.h:7
Definition Alias.h:14