LeviLamina
Loading...
Searching...
No Matches
UpdateSubChunkNetworkBlockInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/NetworkBlockPosition.h"
7#include "mc/world/level/ActorBlockSyncMessage.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 12, ::NetworkBlockPosition> mPos;
19 ::ll::TypedStorage<4, 4, uint> mRuntimeId;
20 ::ll::TypedStorage<1, 1, uchar> mUpdateFlags;
21 ::ll::TypedStorage<8, 16, ::ActorBlockSyncMessage> mSyncMessage;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
28
29public:
30 // member functions
31 // NOLINTBEGIN
33
35 ::BlockPos const& pos,
36 uint blockId,
37 uchar updateFlags,
38 ::ActorBlockSyncMessage const& syncMsg
39 );
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::UpdateSubChunkNetworkBlockInfo const&);
46
47 MCAPI void* $ctor(::BlockPos const& pos, uint blockId, uchar updateFlags, ::ActorBlockSyncMessage const& syncMsg);
48 // NOLINTEND
49};
Definition BlockPos.h:18
Definition ActorBlockSyncMessage.h:8
Definition UpdateSubChunkNetworkBlockInfo.h:14