LeviLamina
Loading...
Searching...
No Matches
CompoundBlockVolume.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7#include "mc/world/level/block/CompoundBlockVolumePositionRelativity.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
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~CompoundBlockVolume() /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI void _recalculateBounds();
41
42 MCNAPI ::CompoundBlockVolumeIterator begin() const;
43
44 MCNAPI void forEachPosition(::std::function<bool(::BlockPos const&)> const& callback) const;
45
46 MCNAPI ::std::vector<::CompoundBlockVolumeItem> getAbsoluteVolumeList() const;
47
48 MCNAPI bool isInside(::BlockPos const& pos) const;
49
50 MCNAPI ::CompoundBlockVolume& operator=(::CompoundBlockVolume const& other);
51
52 MCNAPI bool operator==(::CompoundBlockVolume const& other) const;
53
54 MCNAPI ::std::optional<::CompoundBlockVolumeItem>
55 peekLastVolume(::std::optional<::CompoundBlockVolumePositionRelativity> optRelativity) const;
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition EnableNonOwnerReferences.h:7
Definition BlockPos.h:18
Definition CompoundBlockVolumeItem.h:10
Definition CompoundBlockVolumeIterator.h:13
Definition CompoundBlockVolume.h:16
static MCAPI void ** $vftable()
MCAPI ::std::optional<::CompoundBlockVolumeItem > peekLastVolume(::std::optional<::CompoundBlockVolumePositionRelativity > optRelativity) const
MCAPI void forEachPosition(::std::function< bool(::BlockPos const &)> const &callback) const
MCAPI::CompoundBlockVolume & operator=(::CompoundBlockVolume const &other)
MCAPI ::std::vector<::CompoundBlockVolumeItem > getAbsoluteVolumeList() const
MCAPI bool operator==(::CompoundBlockVolume const &other) const
MCAPI void $dtor()
MCAPI bool isInside(::BlockPos const &pos) const
MCAPI void _recalculateBounds()
MCAPI::CompoundBlockVolumeIterator begin() const
Definition Alias.h:14