LeviLamina
Loading...
Searching...
No Matches
SetArmorTrimFunction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/storage/loot/functions/LootItemFunction.h"
7
8// auto generated forward declare list
9// clang-format off
10class ItemInstance;
11class ItemStack;
12class ItemStackBase;
15class Random;
16namespace Json { class Value; }
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~SetArmorTrimFunction() /*override*/;
38
39 // vIndex: 4
40 virtual void apply(::ItemStack& item, ::Random&, ::LootTableContext& context) /*override*/;
41
42 // vIndex: 2
43 virtual void apply(::ItemInstance& item, ::Random&, ::LootTableContext& context) /*override*/;
44
45 // vIndex: 5
46 virtual ::LootItemFunction::FunctionType getFunctionType() const /*override*/;
47 // NOLINTEND
48
49public:
50 // member functions
51 // NOLINTBEGIN
52 MCNAPI void _apply(::ItemStackBase& item, ::LootTableContext const& context) const;
53 // NOLINTEND
54
55public:
56 // static functions
57 // NOLINTBEGIN
58 MCNAPI static ::std::unique_ptr<::LootItemFunction>
59 deserialize(::Json::Value object, ::std::vector<::std::unique_ptr<::LootItemCondition>>& predicates);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCNAPI void $dtor();
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
72
74
75 MCNAPI ::LootItemFunction::FunctionType $getFunctionType() const;
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCNAPI static void** $vftable();
82 // NOLINTEND
83};
Definition ItemInstance.h:15
Definition ItemStackBase.h:36
Definition ItemStack.h:23
Definition Value.h:16
Definition LootItemCondition.h:12
Definition LootItemFunction.h:17
Definition LootTableContext.h:19
Definition Random.h:10
Definition SetArmorTrimFunction.h:19
MCAPI void $apply(::ItemInstance &item, ::Random &, ::LootTableContext &context)
MCAPI void $dtor()
static MCAPI void ** $vftable()
MCAPI void _apply(::ItemStackBase &item, ::LootTableContext const &context) const
static MCAPI ::std::unique_ptr<::LootItemFunction > deserialize(::Json::Value object, ::std::vector<::std::unique_ptr<::LootItemCondition > > &predicates)
MCAPI::LootItemFunction::FunctionType $getFunctionType() const
MCAPI void $apply(::ItemStack &item, ::Random &, ::LootTableContext &context)
Definition context.h:5
Definition Alias.h:14