LeviLamina
Loading...
Searching...
No Matches
ActorUnloadedChunkTransferEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/chunk/ChunkKey.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11// clang-format on
12
13struct ActorUnloadedChunkTransferEntry {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 12, ::ChunkKey> mFromChunkKey;
18 ::ll::TypedStorage<8, 32, ::std::string> mActorStorageKey;
19 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::CompoundTag>> mActorTag;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ActorUnloadedChunkTransferEntry();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI ActorUnloadedChunkTransferEntry(
30 ::ChunkKey& fromChunkKey,
31 ::std::string& actorStorageKey,
32 ::std::unique_ptr<::CompoundTag> actorTag
33 );
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void*
40 $ctor(::ChunkKey& fromChunkKey, ::std::string& actorStorageKey, ::std::unique_ptr<::CompoundTag> actorTag);
41 // NOLINTEND
42};
Definition ChunkKey.h:13
Definition CompoundTag.h:23