LeviLamina
Loading...
Searching...
No Matches
MobSpawnerBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/optional_ref.h"
7#include "mc/world/level/block/ActorBlockBase.h"
8#include "mc/world/level/block/BlockType.h"
9
10// auto generated forward declare list
11// clang-format off
12class AABB;
13class Block;
14class BlockPos;
17// clang-format on
18
19class MobSpawnerBlock : public ::ActorBlock {
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual ::AABB getCollisionShape(
24 ::Block const&,
26 ::BlockPos const& pos,
28 ) const /*override*/;
29
30 virtual ::AABB const&
31 getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const
32 /*override*/;
33
34 virtual ~MobSpawnerBlock() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCFOLD ::AABB $getCollisionShape(
41 ::Block const&,
43 ::BlockPos const& pos,
45 ) const;
46
47 MCFOLD ::AABB const&
48 $getOutline(::Block const&, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const;
49
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCAPI static void** $vftable();
57 // NOLINTEND
58};
Definition AABB.h:18
Definition BlockPos.h:19
Definition Block.h:43
Definition GetCollisionShapeInterface.h:13
Definition IConstBlockSource.h:25
Definition MobSpawnerBlock.h:19
Definition optional_ref.h:10