LeviLamina
Loading...
Searching...
No Matches
ScriptItemEnchantmentLevelOutOfBoundsError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/BaseError.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ErrorBinding; }
11// clang-format on
12
13namespace ScriptModuleMinecraft {
14
15struct ScriptItemEnchantmentLevelOutOfBoundsError : public ::Scripting::BaseError {
16public:
17 // prevent constructor by default
18 ScriptItemEnchantmentLevelOutOfBoundsError();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI ScriptItemEnchantmentLevelOutOfBoundsError(
24 ::std::string const& details,
25 ::std::string const& typeName,
26 int level,
27 int maxLevel
28 );
29 // NOLINTEND
30
31public:
32 // static functions
33 // NOLINTBEGIN
34 MCAPI static ::Scripting::ErrorBinding bind();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(::std::string const& details, ::std::string const& typeName, int level, int maxLevel);
41 // NOLINTEND
42};
43
44} // namespace ScriptModuleMinecraft
Definition BaseError.h:12
Definition ErrorBinding.h:15