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