LeviLamina
Loading...
Searching...
No Matches
EmptyLootItem.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;
12class Random;
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual bool _createItem(::std::vector<::ItemStack>&, ::Random&, ::LootTableContext&) const /*override*/;
20
21 virtual ~EmptyLootItem() /*override*/ = default;
22
23 virtual ::LootPoolEntry::EntryType getEntryType() const /*override*/;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29 MCFOLD bool $_createItem(::std::vector<::ItemStack>&, ::Random&, ::LootTableContext&) const;
30
31 MCFOLD ::LootPoolEntry::EntryType $getEntryType() const;
32
33
34 // NOLINTEND
35
36public:
37 // vftables
38 // NOLINTBEGIN
39 MCNAPI static void** $vftable();
40 // NOLINTEND
41};
Definition EmptyLootItem.h:15
static MCAPI void ** $vftable()
Definition ItemStack.h:35
Definition LootPoolEntry.h:14
Definition LootTableContext.h:21
Definition Random.h:10