LeviLamina
Loading...
Searching...
No Matches
JigsawStructurePostprocessAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/BlockPos.h"
7#include "mc/world/level/chunk/IRequestAction.h"
8#include "mc/world/level/levelgen/structure/BoundingBox.h"
9#include "mc/world/level/levelgen/structure/structurepools/JigsawReplacement.h"
10#include "mc/world/level/levelgen/v2/LiquidSettings.h"
11
12// auto generated forward declare list
13// clang-format off
14class CompoundTag;
15class Dimension;
17class ServerLevel;
18namespace br::worldgen { class PoolElementStructureSection; }
19namespace cereal { struct ReflectionCtx; }
20// clang-format on
21
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::br::worldgen::PoolElementStructureSection>> mSection;
27 ::ll::TypedStorage<4, 12, ::BlockPos> mOriginPos;
28 ::ll::TypedStorage<4, 24, ::BoundingBox> mChunkBounds;
29 ::ll::TypedStorage<1, 1, ::br::worldgen::JigsawReplacement> mJigsawReplacement;
30 ::ll::TypedStorage<1, 1, bool> mIncludeEntities;
31 ::ll::TypedStorage<1, 1, ::br::worldgen::LiquidSettings> mLiquidSettings;
32 // NOLINTEND
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 // vIndex: 1
38 virtual void execute(::ServerLevel& level, ::Dimension& dimension) /*override*/;
39
40 // vIndex: 2
41 virtual void serialize(::CompoundTag& tag) /*override*/;
42
43 // vIndex: 0
44 virtual ~JigsawStructurePostprocessAction() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCNAPI static ::std::unique_ptr<::JigsawStructurePostprocessAction>
51 load(::CompoundTag const& tag, ::JigsawStructureElementRegistry const& elementReg);
52 // NOLINTEND
53
54public:
55 // static variables
56 // NOLINTBEGIN
57 MCNAPI static ::std::unique_ptr<::cereal::ReflectionCtx>& mCerealContext();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCNAPI void $execute(::ServerLevel& level, ::Dimension& dimension);
64
65 MCNAPI void $serialize(::CompoundTag& tag);
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition CompoundTag.h:13
Definition Dimension.h:83
Definition IRequestAction.h:12
Definition JigsawStructureElementRegistry.h:10
Definition JigsawStructurePostprocessAction.h:22
static MCAPI ::std::unique_ptr<::JigsawStructurePostprocessAction > load(::CompoundTag const &tag, ::JigsawStructureElementRegistry const &elementReg)
MCAPI void $execute(::ServerLevel &level, ::Dimension &dimension)
MCAPI void $serialize(::CompoundTag &tag)
static MCAPI void ** $vftable()
static MCAPI ::std::unique_ptr<::cereal::ReflectionCtx > & mCerealContext()
Definition ServerLevel.h:61
Definition serialize.h:11