LeviLamina
Loading...
Searching...
No Matches
SpikeFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/feature/Feature.h"
7
8// auto generated forward declare list
9// clang-format off
10class AABB;
11class BlockPos;
12class BlockSource;
13class Random;
14// clang-format on
15
16class SpikeFeature : public ::Feature {
17public:
18 // SpikeFeature inner types declare
19 // clang-format off
20 class EndSpike;
21 // clang-format on
22
23 // SpikeFeature inner types define
24 class EndSpike {
25 public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<4, 4, int const> mCenterX;
29 ::ll::TypedStorage<4, 4, int const> mCenterZ;
30 ::ll::TypedStorage<4, 4, int const> mRadius;
31 ::ll::TypedStorage<4, 4, int const> mHeight;
32 ::ll::TypedStorage<1, 1, bool const> mGuarded;
33 ::ll::TypedStorage<4, 24, ::AABB const> mTopBoundingBox;
34 // NOLINTEND
35 };
36
37public:
38 // member variables
39 // NOLINTBEGIN
40 ::ll::TypedStorage<8, 8, ::SpikeFeature::EndSpike const&> mSpike;
41 ::ll::TypedStorage<4, 12, ::BlockPos> mCrystalBeamTarget;
42 ::ll::TypedStorage<1, 1, bool> mCrystalInvulnerable;
43 // NOLINTEND
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 // vIndex: 4
49 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const /*override*/;
50
51 // vIndex: 0
52 virtual ~SpikeFeature() /*override*/;
53 // NOLINTEND
54
55public:
56 // member functions
57 // NOLINTBEGIN
58 MCAPI void postProcessMobsAt(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCFOLD void $dtor();
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCAPI static void** $vftable();
77 // NOLINTEND
78};
Definition AABB.h:16
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Feature.h:18
Definition Random.h:16
Definition SpikeFeature.h:24
Definition SpikeFeature.h:16