LeviLamina
Loading...
Searching...
No Matches
ChangeDimensionRequest.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
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11class Dimension;
12class Vec3;
13// clang-format on
14
16public:
17 // ChangeDimensionRequest inner types define
18 enum class State : int {
19 PrepareRegion = 0,
20 WaitingForChunks = 1,
21 WaitingForRespawn = 2,
22 };
23
24public:
25 // member variables
26 // NOLINTBEGIN
27 ::ll::TypedStorage<4, 4, ::ChangeDimensionRequest::State> mState;
28 ::ll::TypedStorage<4, 4, ::DimensionType> mFromDimensionId;
29 ::ll::TypedStorage<4, 4, ::DimensionType> mToDimensionId;
30 ::ll::TypedStorage<4, 12, ::Vec3> mFromLocation;
31 ::ll::TypedStorage<4, 12, ::Vec3> mToLocation;
32 ::ll::TypedStorage<1, 1, bool> mUsePortal;
33 ::ll::TypedStorage<1, 1, bool> mRespawn;
34 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::CompoundTag>> mAgentTag;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48};
Definition ChangeDimensionRequest.h:15
Definition CompoundTag.h:13
Definition Dimension.h:83
Definition Vec3.h:10