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 // prevent constructor by default
21 EndCrystalItem();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual bool isGlint(::ItemStackBase const& stack) const /*override*/;
27
28 virtual bool isDestructive(int) const /*override*/;
29
30 virtual ::InteractionResult
31 _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const
32 /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI EndCrystalItem(::std::string const& nameId, int id);
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(::std::string const& nameId, int id);
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCFOLD bool $isGlint(::ItemStackBase const& stack) const;
51
52 MCFOLD bool $isDestructive(int) const;
53
54 MCAPI ::InteractionResult
55 $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const;
56
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCAPI static void** $vftable();
64 // NOLINTEND
65};
Definition Actor.h:125
Definition BlockPos.h:21
Definition InteractionResult.h:5
Definition ItemStackBase.h:52
Definition ItemStack.h:35
Definition Vec3.h:10