LeviLamina
Loading...
Searching...
No Matches
LootPoolEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ItemStack;
9class Random;
10namespace Json { class Value; }
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 LootPoolEntry& operator=(LootPoolEntry const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual bool _createItem(::std::vector<::ItemStack>&, ::Random&, ::LootTableContext&) const = 0;
34
35 // vIndex: 1
36 virtual ~LootPoolEntry();
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static ::std::unique_ptr<::LootPoolEntry>
43 deserialize(::Json::Value const& entryJson, bool usingUpcomingCreatorFeaturesExperiment);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition ItemStack.h:25
Definition Value.h:16
Definition LootPoolEntry.h:13
Definition LootTableContext.h:20
Definition Random.h:16
Definition Alias.h:14