LeviLamina
Loading...
Searching...
No Matches
CoralFanBlockItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/BlockItem.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class BlockPos;
13class ItemStack;
14class Vec3;
15// clang-format on
16
17class CoralFanBlockItem : public ::BlockItem {
18public:
19 // prevent constructor by default
20 CoralFanBlockItem();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual bool isValidAuxValue(int auxValue) const /*override*/;
26
27 virtual int getLevelDataForAuxValue(int auxValue) const /*override*/;
28
29 virtual ::InteractionResult
30 _useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const
31 /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI CoralFanBlockItem(::std::string const& name, int id);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::std::string const& name, int id);
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI bool $isValidAuxValue(int auxValue) const;
50
51 MCFOLD int $getLevelDataForAuxValue(int auxValue) const;
52
53 MCAPI ::InteractionResult
54 $_useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const;
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition Actor.h:125
Definition BlockPos.h:21
Definition InteractionResult.h:5
Definition ItemStack.h:35
Definition Vec3.h:10