LeviLamina
Loading...
Searching...
No Matches
StructurePoolActorPredicateActorMatch.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/structurepools/IStructurePoolActorPredicate.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Util { class XXHash; }
11// clang-format on
12
13class StructurePoolActorPredicateActorMatch : public ::IStructurePoolActorPredicate {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 32, ::std::string const> mActor;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 StructurePoolActorPredicateActorMatch();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual bool test(::std::string const& actor) const /*override*/;
28
29 virtual void appendMetadataKey(::Util::XXHash& hash) const /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI explicit StructurePoolActorPredicateActorMatch(::std::string actor);
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(::std::string actor);
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI bool $test(::std::string const& actor) const;
48
49 MCAPI void $appendMetadataKey(::Util::XXHash& hash) const;
50
51
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCNAPI static void** $vftable();
58 // NOLINTEND
59};
Definition IStructurePoolActorPredicate.h:10
Definition XXHash.h:7