LeviLamina
Loading...
Searching...
No Matches
RakNetCommandParser.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/raknet/CommandParserInterface.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace RakNet { class TransportInterface; }
11namespace RakNet { struct SystemAddress; }
12// clang-format on
13
14namespace RakNet {
15
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~RakNetCommandParser() /*override*/ = default;
34
35 // vIndex: 5
36 virtual bool
37 OnCommand(char const*, uint, char**, ::RakNet::TransportInterface*, ::RakNet::SystemAddress const&, char const*) /*override*/
38 ;
39
40 // vIndex: 1
41 virtual char const* GetName() const /*override*/;
42
43 // vIndex: 4
44 virtual void SendHelp(::RakNet::TransportInterface*, ::RakNet::SystemAddress const&) /*override*/;
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56
57 // NOLINTEND
58};
59
60} // namespace RakNet
Definition CommandParserInterface.h:14
Definition RakNetCommandParser.h:16
Definition TransportInterface.h:14
Definition SystemAddress.h:7
Definition Alias.h:14