LeviLamina
Loading...
Searching...
No Matches
RedStoneDustItem.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 BlockPos;
13class ItemStack;
14class ItemStackBase;
15class Vec3;
16// clang-format on
17
18class RedStoneDustItem : public ::Item {
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 120
23 virtual ::InteractionResult
24 _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const
25 /*override*/;
26
27 // vIndex: 118
28 virtual bool _calculatePlacePos(::ItemStackBase&, ::Actor& entity, uchar& face, ::BlockPos& pos) const /*override*/;
29
30 // vIndex: 0
31 virtual ~RedStoneDustItem() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCAPI ::InteractionResult
38 $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const;
39
40 MCAPI bool $_calculatePlacePos(::ItemStackBase&, ::Actor& entity, uchar& face, ::BlockPos& pos) const;
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCNAPI static void** $vftable();
47 // NOLINTEND
48};
Definition Actor.h:103
Definition BlockPos.h:18
Definition InteractionResult.h:5
Definition ItemStackBase.h:35
Definition ItemStack.h:25
Definition Item.h:65
Definition RedStoneDustItem.h:18
static MCAPI void ** $vftable()
Definition Vec3.h:10