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
16public:
17 // prevent constructor by default
19
20public:
21 // member functions
22 // NOLINTBEGIN
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 MCNAPI static ::Scripting::ErrorBinding bind();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI void* $ctor(::std::string const& details, ::std::string const& typeName, int level, int maxLevel);
41 // NOLINTEND
42};
43
44} // namespace ScriptModuleMinecraft
Definition ScriptItemEnchantmentLevelOutOfBoundsError.h:15
MCAPI ScriptItemEnchantmentLevelOutOfBoundsError(::std::string const &details, ::std::string const &typeName, int level, int maxLevel)
MCAPI void * $ctor(::std::string const &details, ::std::string const &typeName, int level, int maxLevel)
Definition BaseError.h:12