LeviLamina
Loading...
Searching...
No Matches
ProtectedBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/v2/processors/StructureProcessor.h"
7#include "mc/world/level/levelgen/v2/processors/StructureProcessorType.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
12class HashedString;
13class IBlockSource;
14namespace Util { class XXHash; }
15namespace br::worldgen { struct StructureBlockInfo; }
16namespace br::worldgen { struct StructurePlaceSettings; }
17// clang-format on
18
19namespace br::worldgen::processors {
20
22public:
23 // member variables
24 // NOLINTBEGIN
25 ::ll::TypedStorage<8, 48, ::HashedString> mCannotReplace;
26 // NOLINTEND
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual ::std::optional<::br::worldgen::StructureBlockInfo>
34 const /*override*/;
35
36 // vIndex: 3
37 virtual ::br::worldgen::StructureProcessorType type() const /*override*/;
38
39 // vIndex: 4
40 virtual void appendMetadataKey(::Util::XXHash& hash) const /*override*/;
41
42 // vIndex: 0
43 virtual ~ProtectedBlock() /*override*/;
44 // NOLINTEND
45
46public:
47 // static functions
48 // NOLINTBEGIN
49 MCAPI static ::br::worldgen::processors::ProtectedBlock from(::HashedString cannotReplace);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCFOLD void $dtor();
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI ::std::optional<::br::worldgen::StructureBlockInfo>
63 const;
64
65 MCFOLD ::br::worldgen::StructureProcessorType $type() const;
66
67 MCAPI void $appendMetadataKey(::Util::XXHash& hash) const;
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCAPI static void** $vftable();
74 // NOLINTEND
75};
76
77} // namespace br::worldgen::processors
Definition BlockPos.h:18
Definition HashedString.h:5
Definition IBlockSource.h:35
Definition XXHash.h:7
Definition ProtectedBlock.h:21
Definition StructureBlockInfo.h:14
Definition StructurePlaceSettings.h:18
Definition StructureProcessor.h:22