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 // prevent constructor by default
18 CarrotOnAStickItem();
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual bool isHandEquipped() const /*override*/;
24
25 virtual bool requiresInteract() const /*override*/;
26
27 virtual int getEnchantSlot() const /*override*/;
28
29 virtual int getEnchantValue() const /*override*/;
30
31 virtual void hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI CarrotOnAStickItem(::std::string const& name, short id);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::std::string const& name, short id);
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCFOLD bool $isHandEquipped() const;
50
51 MCFOLD bool $requiresInteract() const;
52
53 MCAPI int $getEnchantSlot() const;
54
55 MCFOLD int $getEnchantValue() const;
56
57 MCFOLD void $hurtActor(::ItemStack& item, ::Actor& actor, ::Mob& attacker) const;
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition Actor.h:125
Definition ItemStack.h:35
Definition Mob.h:57