LeviLamina
Loading...
Searching...
No Matches
StructurePoolBlockTagRule.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Block;
8class CompoundTag;
10// clang-format on
11
12class StructurePoolBlockTagRule {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::IStructurePoolBlockTagPredicate> const> mSourcePredicate;
17 ::ll::TypedStorage<8, 32, ::std::string const> mResultKey;
18 ::ll::TypedStorage<8, 32, ::std::string const> mResultValue;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 StructurePoolBlockTagRule();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI StructurePoolBlockTagRule(
29 ::std::unique_ptr<::IStructurePoolBlockTagPredicate>&& sourceBlockTagPredicate,
30 ::std::string resultKey,
31 ::std::string resultValue
32 );
33
34 MCAPI bool processRule(::Block const& sourceBlock, ::CompoundTag& sourceTag) const;
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(
41 ::std::unique_ptr<::IStructurePoolBlockTagPredicate>&& sourceBlockTagPredicate,
42 ::std::string resultKey,
43 ::std::string resultValue
44 );
45 // NOLINTEND
46};
Definition Block.h:43
Definition CompoundTag.h:23
Definition IStructurePoolBlockTagPredicate.h:12