LeviLamina
Loading...
Searching...
No Matches
TrialSpawnerBlock.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;
17struct Brightness;
18// clang-format on
19
20class TrialSpawnerBlock : public ::ActorBlock {
21public:
22 // prevent constructor by default
23 TrialSpawnerBlock();
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ::AABB getCollisionShape(
29 ::Block const& pos,
31 ::BlockPos const&,
33 ) const /*override*/;
34
35 virtual ::Brightness getLightEmission(::Block const& block) const /*override*/;
36
37 virtual int getVariant(::Block const& block) const /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI TrialSpawnerBlock(::std::string const& nameId, int id);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::std::string const& nameId, int id);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCFOLD ::AABB $getCollisionShape(
56 ::Block const& pos,
58 ::BlockPos const&,
60 ) const;
61
62 MCAPI ::Brightness $getLightEmission(::Block const& block) const;
63
64 MCAPI int $getVariant(::Block const& block) const;
65
66
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
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
Definition Brightness.h:8