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 MCNAPI ::std::unique_ptr<::CommandArea> _getArea(
29 ::Bounds const& requiredArea,
30 bool allowNonTickingPlayerAndTickingAreaChunks,
31 bool allowUnloadedChunks,
32 bool allowPlayerChunks
33 ) const;
34
35 MCNAPI ::std::unique_ptr<::CommandArea> _getNewCommandArea(::Bounds const& requiredArea) const;
36
37 MCNAPI ::std::unique_ptr<::CommandArea> findAreaWithBuffer(
38 ::BlockPos const& min,
39 ::BlockPos const& max,
40 int commandVersion,
41 bool allowUnloadedChunks,
42 bool allowPlayerChunks
43 ) const;
44 // NOLINTEND
45};
Definition BlockPos.h:18
Definition CommandAreaFactory.h:12
MCAPI ::std::unique_ptr<::CommandArea > findAreaWithBuffer(::BlockPos const &min, ::BlockPos const &max, int commandVersion, bool allowUnloadedChunks, bool allowPlayerChunks) const
MCAPI ::std::unique_ptr<::CommandArea > _getNewCommandArea(::Bounds const &requiredArea) const
MCAPI ::std::unique_ptr<::CommandArea > _getArea(::Bounds const &requiredArea, bool allowNonTickingPlayerAndTickingAreaChunks, bool allowUnloadedChunks, bool allowPlayerChunks) const
Definition CommandArea.h:5
Definition Bounds.h:8
Definition Alias.h:14