LeviLamina
Loading...
Searching...
No Matches
ClientHello.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace NetherNet {
6
7class ClientHello {
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 ClientHello& operator=(ClientHello const&);
17 ClientHello(ClientHello const&);
18 ClientHello();
19};
20
21} // namespace NetherNet
Definition Alias.h:14