LeviLamina
Loading...
Searching...
No Matches
StructurePoolBlockTagPredicateBlockTagMatch.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/structurepools/IStructurePoolBlockTagPredicate.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class CompoundTag;
12namespace Util { class XXHash; }
13// clang-format on
14
15class StructurePoolBlockTagPredicateBlockTagMatch : public ::IStructurePoolBlockTagPredicate {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Block const&> mBlock;
20 ::ll::TypedStorage<8, 8, ::CompoundTag const&> mTag;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 StructurePoolBlockTagPredicateBlockTagMatch& operator=(StructurePoolBlockTagPredicateBlockTagMatch const&);
26 StructurePoolBlockTagPredicateBlockTagMatch(StructurePoolBlockTagPredicateBlockTagMatch const&);
27 StructurePoolBlockTagPredicateBlockTagMatch();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual bool test(::Block const&, ::CompoundTag const&) const /*override*/;
33
34 virtual void appendMetadataKey(::Util::XXHash&) const /*override*/;
35
36 virtual ~StructurePoolBlockTagPredicateBlockTagMatch() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
Definition Block.h:43
Definition CompoundTag.h:23
Definition IStructurePoolBlockTagPredicate.h:12
Definition XXHash.h:7