LeviLamina
Loading...
Searching...
No Matches
EnderpearlItem.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 HashedString;
11class ItemStack;
12class Player;
13// clang-format on
14
15class EnderpearlItem : public ::Item {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ::ItemStack& use(::ItemStack& item, ::Player& player) const /*override*/;
20
21 virtual bool isThrowable() const /*override*/;
22
23 virtual ::HashedString const& getCooldownCategory() const /*override*/;
24
25 virtual int getCooldownDuration() const /*override*/;
26
27 virtual ~EnderpearlItem() /*override*/ = default;
28 // NOLINTEND
29
30public:
31 // static variables
32 // NOLINTBEGIN
33 MCAPI static ::HashedString const& COOLDOWN();
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const;
40
41 MCFOLD bool $isThrowable() const;
42
43 MCAPI ::HashedString const& $getCooldownCategory() const;
44
45 MCFOLD int $getCooldownDuration() const;
46
47
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
Definition EnderpearlItem.h:15
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition ItemStack.h:26
Definition Player.h:125