LeviLamina
Loading...
Searching...
No Matches
ScriptCustomCommandInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/CommandPermissionLevel.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace ScriptModuleMinecraft { struct ScriptCustomCommandParamInterface; }
11namespace Scripting { struct InterfaceBinding; }
12// clang-format on
13
14namespace ScriptModuleMinecraft {
15
16struct ScriptCustomCommandInterface {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 32, ::std::string> mName;
21 ::ll::TypedStorage<8, 32, ::std::string> mDescription;
22 ::ll::TypedStorage<1, 1, ::CommandPermissionLevel> mPermissionLevel;
23 ::ll::TypedStorage<1, 2, ::std::optional<bool>> mCheatsRequired;
24 ::ll::
25 TypedStorage<8, 32, ::std::optional<::std::vector<::ScriptModuleMinecraft::ScriptCustomCommandParamInterface>>>
26 mMandatoryParams;
27 ::ll::
28 TypedStorage<8, 32, ::std::optional<::std::vector<::ScriptModuleMinecraft::ScriptCustomCommandParamInterface>>>
29 mOptionalParams;
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 ScriptCustomCommandInterface& operator=(ScriptCustomCommandInterface const&);
35 ScriptCustomCommandInterface();
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI ScriptCustomCommandInterface(::ScriptModuleMinecraft::ScriptCustomCommandInterface&&);
41
42 MCAPI ScriptCustomCommandInterface(::ScriptModuleMinecraft::ScriptCustomCommandInterface const&);
43
44 MCAPI bool operator==(::ScriptModuleMinecraft::ScriptCustomCommandInterface const& other) const;
45
46 MCAPI ~ScriptCustomCommandInterface();
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCAPI static ::Scripting::InterfaceBinding bind();
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
59
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCAPI void $dtor();
67 // NOLINTEND
68};
69
70} // namespace ScriptModuleMinecraft
Definition ScriptCustomCommandInterface.h:16
Definition ScriptCustomCommandParamInterface.h:15
Definition InterfaceBinding.h:16