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;
15struct CopperBlockSet;
16// clang-format on
17
18class CopperGrateBlock : public ::CopperBlock<::BlockType> {
19public:
20 // prevent constructor by default
21 CopperGrateBlock();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual bool getCollisionShapeForCamera(
27 ::AABB& outAABB,
28 ::Block const& block,
29 ::IConstBlockSource const& region,
30 ::BlockPos const& pos
31 ) const /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI CopperGrateBlock(::std::string const& nameId, int id, ::CopperBlockSet const& copperSet);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::std::string const& nameId, int id, ::CopperBlockSet const& copperSet);
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI bool $getCollisionShapeForCamera(
50 ::AABB& outAABB,
51 ::Block const& block,
52 ::IConstBlockSource const& region,
53 ::BlockPos const& pos
54 ) const;
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition AABB.h:18
Definition BlockPos.h:21
Definition Block.h:69
Definition CopperBlock.h:7
Definition IConstBlockSource.h:24
Definition CopperBlockSet.h:14