LeviLamina
Loading...
Searching...
No Matches
StructurePoolBlockRule.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Block;
8class BlockPos;
10class Random;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::IStructurePoolBlockPredicate> const> mSourcePredicate;
18 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::IStructurePoolBlockPredicate> const> mTargetPredicate;
19 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::IStructurePoolBlockPredicate> const> mPositionPredicate;
20 ::ll::TypedStorage<8, 8, ::Block const*> mResultBlock;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI bool processRule(
27 ::Block const& sourceBlock,
28 ::Block const& targetBlock,
29 ::Random& random,
30 ::Block const*& outputBlock,
31 ::BlockPos const& worldPos,
32 ::BlockPos const& refPos
33 ) const;
34 // NOLINTEND
35};
Definition BlockPos.h:18
Definition Block.h:36
Definition IStructurePoolBlockPredicate.h:18
Definition Random.h:16
Definition StructurePoolBlockRule.h:13