LeviLamina
Loading...
Searching...
No Matches
GlazedTerracottaBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/FaceDirectionalBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class Block;
12class BlockPos;
13class Vec3;
14// clang-format on
15
16class GlazedTerracottaBlock : public ::FaceDirectionalBlock {
17public:
18 // prevent constructor by default
19 GlazedTerracottaBlock();
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ::Block const&
25 getPlacementBlock(::Actor const& by, ::BlockPos const& pos, uchar face, ::Vec3 const& clickPos, int itemValue) const
26 /*override*/;
27
28 virtual bool isValidAuxValue(int value) const /*override*/;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI GlazedTerracottaBlock(::std::string const& nameId, int id);
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 ::Block const& $getPlacementBlock(
47 ::Actor const& by,
48 ::BlockPos const& pos,
49 uchar face,
50 ::Vec3 const& clickPos,
51 int itemValue
52 ) const;
53
54 MCFOLD bool $isValidAuxValue(int value) const;
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition Actor.h:125
Definition BlockPos.h:21
Definition Block.h:69
static MCAPI void ** $vftable()
Definition Vec3.h:10