LeviLamina
Loading...
Searching...
No Matches
PendingArea.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/AutomaticID.h"
7#include "mc/legacy/ActorUniqueID.h"
8#include "mc/platform/UUID.h"
9#include "mc/util/Bounds.h"
10#include "mc/world/level/ticking/TickingAreaLoadMode.h"
11
12// auto generated forward declare list
13// clang-format off
14class CompoundTag;
15class Dimension;
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 16, ::mce::UUID> mUID;
24 ::ll::TypedStorage<8, 32, ::std::string> mName;
25 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mEntityId;
26 ::ll::TypedStorage<4, 48, ::Bounds> mBounds;
27 ::ll::TypedStorage<4, 4, float> mMaxDistToPlayers;
28 ::ll::TypedStorage<1, 1, bool> mIsCircle;
29 ::ll::TypedStorage<1, 1, bool> mAlwaysActive;
30 ::ll::TypedStorage<1, 1, ::TickingAreaLoadMode> mLoadMode;
31 ::ll::TypedStorage<1, 1, bool> mCreated;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI ::TickingAreaDescription getDescription() const;
38
39 MCAPI ::CompoundTag serialize(::DimensionType dimensionId) const;
40
41 MCAPI ~PendingArea();
42 // NOLINTEND
43
44public:
45 // static functions
46 // NOLINTBEGIN
47 MCAPI static ::PendingArea load(::std::string const& key, ::CompoundTag const& tag);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCFOLD void $dtor();
54 // NOLINTEND
55};
Definition AutomaticID.h:6
Definition CompoundTag.h:13
Definition Dimension.h:83
Definition PendingArea.h:19
Definition TickingAreaDescription.h:9
Definition serialize.h:11