LeviLamina
Loading...
Searching...
No Matches
ScopedGameTestTickingArea.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BoundingBox;
8class Dimension;
9class ITickingArea;
10// clang-format on
11
12class ScopedGameTestTickingArea {
13public:
14 // member variables
15 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ScopedGameTestTickingArea& operator=(ScopedGameTestTickingArea const&);
25 ScopedGameTestTickingArea(ScopedGameTestTickingArea const&);
26 ScopedGameTestTickingArea();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCNAPI
32 ScopedGameTestTickingArea(::Dimension& dimension, ::BoundingBox const& bounds, ::std::string const& structureName);
33
34 MCNAPI void _createTickingArea();
35
36 MCNAPI void _removeTickingArea();
37
38 MCNAPI bool areChunksLoaded();
39
40 MCNAPI ::std::shared_ptr<::ITickingArea> getTickingArea() const;
41
43 // NOLINTEND
44
45public:
46 // static variables
47 // NOLINTBEGIN
48 MCNAPI static ::std::string const& TICKING_AREA_PREFIX();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCNAPI void* $ctor(::Dimension& dimension, ::BoundingBox const& bounds, ::std::string const& structureName);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCNAPI void $dtor();
61 // NOLINTEND
62};
Definition BoundingBox.h:13
Definition Dimension.h:89
Definition ITickingArea.h:25
MCAPI void _createTickingArea()
MCAPI ScopedGameTestTickingArea(::Dimension &dimension, ::BoundingBox const &bounds, ::std::string const &structureName)
MCAPI bool areChunksLoaded()
MCAPI ::std::shared_ptr<::ITickingArea > getTickingArea() const
MCAPI void * $ctor(::Dimension &dimension, ::BoundingBox const &bounds, ::std::string const &structureName)
MCAPI void _removeTickingArea()
static MCAPI ::std::string const & TICKING_AREA_PREFIX()
Definition Alias.h:14