LeviLamina
Loading...
Searching...
No Matches
LootTableEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/storage/loot/entries/LootPoolEntry.h"
7
8// auto generated forward declare list
9// clang-format off
10class ItemStack;
11class LootTable;
13class Random;
14namespace Json { class Value; }
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::LootTable>> mTable;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual bool _createItem(::std::vector<::ItemStack>& output, ::Random& random, ::LootTableContext& context) const
28 /*override*/;
29
30 virtual ::LootPoolEntry::EntryType getEntryType() const /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCFOLD ::LootTable const& getLootTable() const;
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static ::std::unique_ptr<::LootPoolEntry>
43 deserialize(::Json::Value entry, bool usingUpcomingCreatorFeaturesExperiment);
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI bool $_createItem(::std::vector<::ItemStack>& output, ::Random& random, ::LootTableContext& context) const;
50
51 MCFOLD ::LootPoolEntry::EntryType $getEntryType() const;
52
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition ItemStack.h:35
Definition Value.h:16
Definition LootPoolEntry.h:14
Definition LootTableContext.h:21
Definition LootTableEntry.h:17
static MCAPI void ** $vftable()
Definition LootTable.h:15
Definition Random.h:10
Definition context.h:5