LeviLamina
Loading...
Searching...
No Matches
PaleMossCarpetBlockItem.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 PaleMossCarpetBlockItem : public ::BlockItem {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual ::InteractionResult
22 _useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const
23 /*override*/;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29 MCAPI ::InteractionResult
30 $_useOn(::ItemStack& instance, ::Actor& actor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const;
31
32
33 // NOLINTEND
34
35public:
36 // vftables
37 // NOLINTBEGIN
38 MCAPI static void** $vftable();
39 // NOLINTEND
40};
Definition Actor.h:125
Definition BlockPos.h:21
Definition InteractionResult.h:5
Definition ItemStack.h:35
Definition PaleMossCarpetBlockItem.h:17
Definition Vec3.h:10