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 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCNAPI ::Scripting::Result<::Json::Value, ::ScriptModuleMinecraft::ScriptRawMessageError>
43 $buildJson(::Player& forPlayer, ::CurrentCmdVersion commandVersion) const;
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
54
55} // namespace ScriptModuleMinecraftServerUI
Definition Value.h:16
Definition Player.h:137
MCAPI ::Scripting::Result<::Json::Value, ::ScriptModuleMinecraft::ScriptRawMessageError > $buildJson(::Player &forPlayer, ::CurrentCmdVersion commandVersion) const
Definition ScriptRawMessageError.h:15
Definition Alias.h:14