LeviLamina
Loading...
Searching...
No Matches
CopperGrateBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockType.h"
7#include "mc/world/level/block/CopperBlock.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class Block;
13class BlockPos;
15// clang-format on
16
17class CopperGrateBlock : public ::CopperBlock<::BlockType> {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual bool getCollisionShapeForCamera(
22 ::AABB& outAABB,
23 ::Block const& block,
24 ::IConstBlockSource const& region,
25 ::BlockPos const& pos
26 ) const /*override*/;
27
28 virtual ~CopperGrateBlock() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCAPI bool $getCollisionShapeForCamera(
35 ::AABB& outAABB,
36 ::Block const& block,
37 ::IConstBlockSource const& region,
38 ::BlockPos const& pos
39 ) const;
40
41
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCAPI static void** $vftable();
48 // NOLINTEND
49};
Definition AABB.h:18
Definition BlockPos.h:19
Definition Block.h:43
Definition CopperBlock.h:7
Definition CopperGrateBlock.h:17
Definition IConstBlockSource.h:25