LeviLamina
Loading...
Searching...
No Matches
StructurePoolBlockTagPredicateBlockTagStringMatches.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 StructurePoolBlockTagPredicateBlockTagStringMatches : public ::IStructurePoolBlockTagPredicate {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Block const&> mBlock;
20 ::ll::TypedStorage<8, 32, ::std::string const> mTagKey;
21 ::ll::TypedStorage<8, 32, ::std::string const> mTagValue;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 StructurePoolBlockTagPredicateBlockTagStringMatches&
27 operator=(StructurePoolBlockTagPredicateBlockTagStringMatches const&);
28 StructurePoolBlockTagPredicateBlockTagStringMatches(StructurePoolBlockTagPredicateBlockTagStringMatches const&);
29 StructurePoolBlockTagPredicateBlockTagStringMatches();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual bool test(::Block const& block, ::CompoundTag const& tag) const /*override*/;
35
36 virtual void appendMetadataKey(::Util::XXHash& hash) const /*override*/;
37
38 virtual ~StructurePoolBlockTagPredicateBlockTagStringMatches() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI
45 StructurePoolBlockTagPredicateBlockTagStringMatches(::Block const& block, ::std::string tag, ::std::string value);
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(::Block const& block, ::std::string tag, ::std::string value);
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI bool $test(::Block const& block, ::CompoundTag const& tag) const;
58
59 MCAPI void $appendMetadataKey(::Util::XXHash& hash) const;
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition Block.h:43
Definition CompoundTag.h:23
Definition IStructurePoolBlockTagPredicate.h:12
Definition XXHash.h:7