LeviLamina
Loading...
Searching...
No Matches
IControl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result_deprecated.h"
7#include "mc/server/commands/CurrentCmdVersion.h"
8
9// auto generated forward declare list
10// clang-format off
11class Player;
12namespace Json { class Value; }
13// clang-format on
14
15namespace ScriptModuleMinecraftServerUI {
16
17class IControl {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 0
22 virtual ~IControl();
23
24 // vIndex: 1
25 virtual ::Scripting::Result_deprecated<::Json::Value> buildJson(::Player&, ::CurrentCmdVersion) const = 0;
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31 MCFOLD void $dtor();
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCAPI static void** $vftable();
44 // NOLINTEND
45};
46
47} // namespace ScriptModuleMinecraftServerUI
Definition Player.h:119