LeviLamina
Loading...
Searching...
No Matches
PumpkinBlockItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/LevelSoundEvent.h"
7#include "mc/deps/shared_types/legacy/actor/ActorLocation.h"
8#include "mc/world/item/BlockItem.h"
9
10class PumpkinBlockItem : public ::BlockItem {
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual int getEnchantSlot() const /*override*/;
15
16 virtual ::SharedTypes::Legacy::ActorLocation getEquipLocation() const /*override*/;
17
18 virtual ::SharedTypes::Legacy::LevelSoundEvent getEquipSound() const /*override*/;
19
20 virtual ~PumpkinBlockItem() /*override*/ = default;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26 MCAPI int $getEnchantSlot() const;
27
28 MCFOLD ::SharedTypes::Legacy::ActorLocation $getEquipLocation() const;
29
30 MCFOLD ::SharedTypes::Legacy::LevelSoundEvent $getEquipSound() const;
31
32
33 // NOLINTEND
34
35public:
36 // vftables
37 // NOLINTBEGIN
38 MCAPI static void** $vftable();
39 // NOLINTEND
40};
Definition PumpkinBlockItem.h:10