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 // prevent constructor by default
22 MobSpawnerBlock();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::AABB getCollisionShape(
28 ::Block const& pos,
30 ::BlockPos const&,
32 ) const /*override*/;
33
34 virtual ::AABB const&
35 getOutline(::Block const& pos, ::IConstBlockSource const& bufferValue, ::BlockPos const&, ::AABB&) const
36 /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI MobSpawnerBlock(::std::string const& nameId, int id);
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(::std::string const& nameId, int id);
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCFOLD ::AABB $getCollisionShape(
55 ::Block const& pos,
57 ::BlockPos const&,
59 ) const;
60
61 MCFOLD ::AABB const&
62 $getOutline(::Block const& pos, ::IConstBlockSource const& bufferValue, ::BlockPos const&, ::AABB&) const;
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
Definition AABB.h:18
Definition BlockPos.h:21
Definition Block.h:69
Definition GetCollisionShapeInterface.h:13
Definition IConstBlockSource.h:24
Definition optional_ref.h:10