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();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI VoxelShapesPacketPayload(
31 ::std::vector<::VoxelShapes::VoxelShape> const& shapes,
32 ::std::unordered_map<::HashedString, ::VoxelShapes::RegistryHandle> const& nameMap,
33 ushort customShapeCount
34 );
35
36 MCAPI ~VoxelShapesPacketPayload();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor(
43 ::std::vector<::VoxelShapes::VoxelShape> const& shapes,
44 ::std::unordered_map<::HashedString, ::VoxelShapes::RegistryHandle> const& nameMap,
45 ushort customShapeCount
46 );
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCAPI void $dtor();
53 // NOLINTEND
54};
Definition RegistryHandle.h:7
Definition VoxelShape.h:19