LeviLamina
Loading...
Searching...
No Matches
ScriptSpecificEnchantFunction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/lifetime_registry/StrongTypedObjectHandle.h"
7#include "mc/scripting/modules/minecraft/loot_tables/functions/ScriptLootItemFunction.h"
8
9// auto generated forward declare list
10// clang-format off
13namespace ScriptModuleMinecraft { class ScriptEnchantInfo; }
14namespace Scripting { struct ClassBinding; }
15// clang-format on
16
17namespace ScriptModuleMinecraft {
18
19class ScriptSpecificEnchantFunction : public ::ScriptModuleMinecraft::ScriptLootItemFunction {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 8, ::SpecificEnchantFunction const&> mFunction;
24 ::ll::TypedStorage<
25 8,
26 32,
27 ::std::optional<
28 ::std::vector<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptEnchantInfo>>>>
29 mEnchants;
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 ScriptSpecificEnchantFunction& operator=(ScriptSpecificEnchantFunction const&);
35 ScriptSpecificEnchantFunction();
36
37public:
38 // virtual functions
39 // NOLINTBEGIN
40 virtual ::LootItemFunction const& _getFunction() const /*override*/;
41
42 virtual ~ScriptSpecificEnchantFunction() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI ScriptSpecificEnchantFunction(::ScriptModuleMinecraft::ScriptSpecificEnchantFunction const&);
49
50 MCAPI ::std::vector<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptEnchantInfo>>
51 getEnchantInfo();
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCAPI static ::Scripting::ClassBinding bind();
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCFOLD ::LootItemFunction const& $_getFunction() const;
70
71
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCNAPI static void** $vftable();
78 // NOLINTEND
79};
80
81} // namespace ScriptModuleMinecraft
Definition LootItemFunction.h:17
Definition ScriptEnchantInfo.h:15
Definition ScriptLootItemFunction.h:18
Definition ScriptSpecificEnchantFunction.h:19
Definition SpecificEnchantFunction.h:21
Definition ClassBinding.h:19