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 const&);
41
42 MCAPI ::ScriptModuleMinecraft::ScriptCustomCommandInterface&
44
45 MCAPI bool operator==(::ScriptModuleMinecraft::ScriptCustomCommandInterface const& other) const;
46
47 MCAPI ~ScriptCustomCommandInterface();
48 // NOLINTEND
49
50public:
51 // static functions
52 // NOLINTBEGIN
53 MCAPI static ::Scripting::InterfaceBinding bind();
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCAPI void $dtor();
66 // NOLINTEND
67};
68
69} // namespace ScriptModuleMinecraft
Definition ScriptCustomCommandInterface.h:16
Definition ScriptCustomCommandParamInterface.h:15
Definition InterfaceBinding.h:16