LeviLamina
Loading...
Searching...
No Matches
HangingActorItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorType.h"
7#include "mc/world/item/Item.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class BlockPos;
14class ItemStack;
15class Vec3;
16// clang-format on
17
18class HangingActorItem : public ::Item {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 4, ::ActorType> mEntityType;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 120
29 virtual ::InteractionResult
30 _useOn(::ItemStack& instance, ::Actor& spawningActor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const
31 /*override*/;
32
33 // vIndex: 0
34 virtual ~HangingActorItem() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCAPI ::InteractionResult
41 $_useOn(::ItemStack& instance, ::Actor& spawningActor, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const;
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCNAPI static void** $vftable();
48 // NOLINTEND
49};
Definition Actor.h:103
Definition BlockPos.h:18
Definition HangingActorItem.h:18
static MCAPI void ** $vftable()
Definition InteractionResult.h:5
Definition ItemStack.h:25
Definition Item.h:65
Definition Vec3.h:10