LeviLamina
Loading...
Searching...
No Matches
CommandDispatcher.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/functions/ICommandDispatcher.h"
7
8// auto generated forward declare list
9// clang-format off
10class Command;
11class CommandOrigin;
12// clang-format on
13
14class CommandDispatcher : public ::ICommandDispatcher {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ~CommandDispatcher() /*override*/ = default;
19
20 virtual int performCommand(::CommandOrigin const& origin, ::Command& command) /*override*/;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI CommandDispatcher();
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCAPI void* $ctor();
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCAPI int $performCommand(::CommandOrigin const& origin, ::Command& command);
39
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCNAPI static void** $vftable();
47 // NOLINTEND
48};
static MCAPI void ** $vftable()
Definition CommandOrigin.h:32
Definition Command.h:18
Definition ICommandDispatcher.h:11