LeviLamina
Loading...
Searching...
No Matches
CandleBlockItem.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;
12class BlockSource;
14class ItemStack;
15class Vec3;
16// clang-format on
17
18class CandleBlockItem : public ::BlockItem {
19public:
20 // prevent constructor by default
21 CandleBlockItem();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual int getLevelDataForAuxValue(int auxValue) const /*override*/;
27
28 virtual ::InteractionResult
29 _useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const
30 /*override*/;
31
32 virtual bool isCandle() const /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI CandleBlockItem(::std::string const& name, int id);
39
40 MCAPI ::BlockPos
41 _getPlacementPosition(::BlockSource& region, ::Actor& usedOnPos, ::BlockPos usedOnFace, uchar) const;
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::std::string const& name, int id);
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCFOLD int $getLevelDataForAuxValue(int auxValue) const;
54
55 MCAPI ::InteractionResult
56 $_useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const;
57
58 MCFOLD bool $isCandle() const;
59
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCAPI static void** $vftable();
67 // NOLINTEND
68};
Definition Actor.h:125
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition InteractionResult.h:5
Definition ItemStack.h:35
Definition Vec3.h:10