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 // prevent constructor by default
19 HarnessItem();
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual bool dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const
25 /*override*/;
26 // NOLINTEND
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI HarnessItem(::std::string const& nameId, short id);
32 // NOLINTEND
33
34public:
35 // static functions
36 // NOLINTBEGIN
37 MCAPI static bool _tryExecutEquipHarnessEvent(::Actor& actor);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::std::string const& nameId, short id);
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const;
50
51
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
Definition Actor.h:125
Definition BlockSource.h:73
Definition Container.h:34
Definition Vec3.h:10