LeviLamina
Loading...
Searching...
No Matches
CarrotOnAStickItem.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 ItemStack;
12class Mob;
13// clang-format on
14
15class CarrotOnAStickItem : public ::Item {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 38
20 virtual bool isHandEquipped() const /*override*/;
21
22 // vIndex: 50
23 virtual bool requiresInteract() const /*override*/;
24
25 // vIndex: 54
26 virtual int getEnchantSlot() const /*override*/;
27
28 // vIndex: 55
29 virtual int getEnchantValue() const /*override*/;
30
31 // vIndex: 82
32 virtual void hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const /*override*/;
33
34 // vIndex: 0
35 virtual ~CarrotOnAStickItem() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCFOLD bool $isHandEquipped() const;
42
43 MCFOLD bool $requiresInteract() const;
44
45 MCAPI int $getEnchantSlot() const;
46
47 MCFOLD int $getEnchantValue() const;
48
49 MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const;
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
Definition Actor.h:103
Definition CarrotOnAStickItem.h:15
static MCAPI void ** $vftable()
Definition ItemStack.h:25
Definition Item.h:65
Definition Mob.h:47