LeviLamina
Loading...
Searching...
No Matches
VoxelShapesPacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace VoxelShapes { class RegistryHandle; }
11namespace VoxelShapes { class VoxelShape; }
12// clang-format on
13
14struct VoxelShapesPacketPayload {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 24, ::std::vector<::VoxelShapes::VoxelShape>> mShapes;
19 ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::VoxelShapes::RegistryHandle>> mNameMap;
20 ::ll::TypedStorage<2, 2, ushort> mCustomShapeCount;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 VoxelShapesPacketPayload& operator=(VoxelShapesPacketPayload const&);
26 VoxelShapesPacketPayload(VoxelShapesPacketPayload const&);
27 VoxelShapesPacketPayload();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI VoxelShapesPacketPayload(::VoxelShapesPacketPayload&&);
33
34 MCAPI ::VoxelShapesPacketPayload& operator=(::VoxelShapesPacketPayload&&);
35
36 MCAPI ~VoxelShapesPacketPayload();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor(::VoxelShapesPacketPayload&&);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCAPI void $dtor();
49 // NOLINTEND
50};
Definition RegistryHandle.h:7
Definition VoxelShape.h:19