LeviLamina
Loading...
Searching...
No Matches
UnburiedConstraint.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
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 UnburiedConstraint& operator=(UnburiedConstraint const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~UnburiedConstraint() /*override*/ = default;
34
35 // vIndex: 1
36 virtual bool
37 isSatisfied(::IBlockWorldGenAPI const& target, ::BlockPos const& structurePos, ::Rotation const& structureRot) const
38 /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCNAPI explicit UnburiedConstraint(::StructureTemplate& structure);
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCNAPI void* $ctor(::StructureTemplate& structure);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCNAPI bool $isSatisfied(
57 ::IBlockWorldGenAPI const& target,
58 ::BlockPos const& structurePos,
59 ::Rotation const& structureRot
60 ) const;
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition BlockPos.h:18
Definition IBlockWorldGenAPI.h:25
Definition IStructureConstraint.h:14
Definition StructureTemplate.h:32
Definition UnburiedConstraint.h:16
MCAPI bool $isSatisfied(::IBlockWorldGenAPI const &target, ::BlockPos const &structurePos, ::Rotation const &structureRot) const
MCAPI void * $ctor(::StructureTemplate &structure)
MCAPI UnburiedConstraint(::StructureTemplate &structure)
static MCAPI void ** $vftable()
Definition Alias.h:14