LeviLamina
Loading...
Searching...
No Matches
EndCrystalItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/Item.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class BlockPos;
13class ItemStack;
14class ItemStackBase;
15class Vec3;
16// clang-format on
17
18class EndCrystalItem : public ::Item {
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 39
23 virtual bool isGlint(::ItemStackBase const& stack) const /*override*/;
24
25 // vIndex: 47
26 virtual bool isDestructive(int auxValue) const /*override*/;
27
28 // vIndex: 120
29 virtual ::InteractionResult
30 _useOn(::ItemStack& instance, ::Actor& usingActor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const
31 /*override*/;
32
33 // vIndex: 0
34 virtual ~EndCrystalItem() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCFOLD bool $isGlint(::ItemStackBase const& stack) const;
41
42 MCFOLD bool $isDestructive(int auxValue) const;
43
44 MCAPI ::InteractionResult
45 $_useOn(::ItemStack& instance, ::Actor& usingActor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const;
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
Definition Actor.h:103
Definition BlockPos.h:18
Definition EndCrystalItem.h:18
static MCAPI void ** $vftable()
Definition InteractionResult.h:5
Definition ItemStackBase.h:35
Definition ItemStack.h:25
Definition Item.h:65
Definition Vec3.h:10