LeviLamina
Loading...
Searching...
No Matches
DropperBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/DispenserBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class BlockSource;
12// clang-format on
13
14class DropperBlock : public ::DispenserBlock {
15public:
16 // prevent constructor by default
17 DropperBlock();
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual void dispenseFrom(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI DropperBlock(::std::string const& nameId, int id);
29 // NOLINTEND
30
31public:
32 // static functions
33 // NOLINTBEGIN
34 MCFOLD static int getAttachedFace(int facing);
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(::std::string const& nameId, int id);
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI void $dispenseFrom(::BlockSource& region, ::BlockPos const& pos) const;
47
48
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
Definition BlockPos.h:21
Definition BlockSource.h:73