LeviLamina
Loading...
Searching...
No Matches
BlockIntersectionConstraint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/Rotation.h"
7#include "mc/world/level/levelgen/structure/constraints/IStructureConstraint.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~BlockIntersectionConstraint() /*override*/ = default;
35
36 // vIndex: 1
37 virtual bool
38 isSatisfied(::IBlockWorldGenAPI const& target, ::BlockPos const& structurePos, ::Rotation const& structureRot) const
39 /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCNAPI void* $ctor(::StructureTemplate& structure);
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI bool $isSatisfied(
58 ::IBlockWorldGenAPI const& target,
59 ::BlockPos const& structurePos,
60 ::Rotation const& structureRot
61 ) const;
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition BlockIntersectionConstraint.h:16
MCAPI void * $ctor(::StructureTemplate &structure)
MCAPI BlockIntersectionConstraint(::StructureTemplate &structure)
MCAPI bool $isSatisfied(::IBlockWorldGenAPI const &target, ::BlockPos const &structurePos, ::Rotation const &structureRot) const
static MCAPI void ** $vftable()
Definition BlockPos.h:18
Definition IBlockWorldGenAPI.h:25
Definition IStructureConstraint.h:14
Definition StructureTemplate.h:32
Definition Alias.h:14