LeviLamina
Loading...
Searching...
No Matches
CommandAreaFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
8class CommandArea;
9struct Bounds;
10// clang-format on
11
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 CommandAreaFactory& operator=(CommandAreaFactory const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI ::std::unique_ptr<::CommandArea> _getArea(
29 ::Bounds const& requiredArea,
30 bool allowNonTickingPlayerAndTickingAreaChunks,
31 bool allowUnloadedChunks,
32 bool allowPlayerChunks
33 ) const;
34
35 MCAPI ::std::unique_ptr<::CommandArea> findAreaWithBuffer(
36 ::BlockPos const& min,
37 ::BlockPos const& max,
38 int commandVersion,
39 bool allowUnloadedChunks,
40 bool allowPlayerChunks
41 ) const;
42 // NOLINTEND
43};
Definition BlockPos.h:18
Definition CommandAreaFactory.h:12
Definition CommandArea.h:5
Definition Bounds.h:10
Definition Alias.h:14