LeviLamina
Loading...
Searching...
No Matches
HarnessItem.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 BlockSource;
12class Container;
13class Vec3;
14// clang-format on
15
16class HarnessItem : public ::Item {
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 78
21 virtual bool dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const
22 /*override*/;
23
24 // vIndex: 0
25 virtual ~HarnessItem() /*override*/ = default;
26 // NOLINTEND
27
28public:
29 // static functions
30 // NOLINTBEGIN
31 MCAPI static bool _tryExecutEquipHarnessEvent(::Actor& actor);
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const;
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCNAPI static void** $vftable();
44 // NOLINTEND
45};
Definition Actor.h:103
Definition BlockSource.h:67
Definition Container.h:30
Definition HarnessItem.h:16
static MCAPI void ** $vftable()
Definition Item.h:65
Definition Vec3.h:10