LeviLamina
Loading...
Searching...
No Matches
DividerControl.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/scripting/modules/minecraft_ui/IControl.h"
8#include "mc/server/commands/CurrentCmdVersion.h"
9
10// auto generated forward declare list
11// clang-format off
12class Player;
13namespace Json { class Value; }
14namespace ScriptModuleMinecraft { struct ScriptRawMessageError; }
15// clang-format on
16
17namespace ScriptModuleMinecraftServerUI {
18
19class DividerControl : public ::ScriptModuleMinecraftServerUI::IControl {
20public:
21 // member variables
22 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 DividerControl& operator=(DividerControl const&);
29 DividerControl(DividerControl const&);
30 DividerControl();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ::Scripting::Result<::Json::Value, ::ScriptModuleMinecraft::ScriptRawMessageError>
36 buildJson(::Player& forPlayer, ::CurrentCmdVersion commandVersion) const /*override*/;
37
38 virtual ~DividerControl() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCNAPI ::Scripting::Result<::Json::Value, ::ScriptModuleMinecraft::ScriptRawMessageError>
45 $buildJson(::Player& forPlayer, ::CurrentCmdVersion commandVersion) const;
46
47
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
56
57} // namespace ScriptModuleMinecraftServerUI
Definition Value.h:16
Definition Player.h:125
MCAPI ::Scripting::Result<::Json::Value, ::ScriptModuleMinecraft::ScriptRawMessageError > $buildJson(::Player &forPlayer, ::CurrentCmdVersion commandVersion) const
Definition ScriptRawMessageError.h:15
Definition Alias.h:14