LeviLamina
Loading...
Searching...
No Matches
CompassItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/AbstractCompassItem.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 CompassItem : public ::AbstractCompassItem {
18public:
19 // prevent constructor by default
20 CompassItem();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ::InteractionResult
26 _useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const
27 /*override*/;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI CompassItem(::std::string const& name, int id);
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::std::string const& name, int id);
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI ::InteractionResult
46 $_useOn(::ItemStack& instance, ::Actor& entity, ::BlockPos pos, uchar face, ::Vec3 const& clickPos) const;
47
48
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
static MCAPI void ** $vftable()
Definition Actor.h:125
Definition BlockPos.h:21
Definition InteractionResult.h:5
Definition ItemStack.h:35
Definition Vec3.h:10