LeviLamina
Loading...
Searching...
No Matches
ScriptEnchantInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/NumberRange.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ClassBinding; }
11// clang-format on
12
13namespace ScriptModuleMinecraft {
14
15class ScriptEnchantInfo {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::std::string const&> mEnchantment;
20 ::ll::TypedStorage<4, 8, ::Scripting::NumberRange> mLevelRange;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ScriptEnchantInfo& operator=(ScriptEnchantInfo const&);
26 ScriptEnchantInfo(ScriptEnchantInfo const&);
27 ScriptEnchantInfo();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI ::std::string getEnchantment() const;
33 // NOLINTEND
34
35public:
36 // static functions
37 // NOLINTBEGIN
38 MCAPI static ::Scripting::ClassBinding bind();
39 // NOLINTEND
40};
41
42} // namespace ScriptModuleMinecraft
Definition ClassBinding.h:19