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.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; }
13namespace ScriptModuleMinecraft { struct ScriptRawMessageError; }
14// clang-format on
15
16namespace ScriptModuleMinecraftServerUI {
17
18class IControl {
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~IControl();
24
25 // vIndex: 1
26 virtual ::Scripting::Result<::Json::Value, ::ScriptModuleMinecraft::ScriptRawMessageError>
27 buildJson(::Player&, ::CurrentCmdVersion) const = 0;
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33 MCNAPI void $dtor();
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace ScriptModuleMinecraftServerUI
Definition Player.h:119