LeviLamina
Loading...
Searching...
No Matches
BlockShapeComponentData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class AABB;
8class Matrix;
9// clang-format on
10
11struct BlockShapeComponentData {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<1, 1, bool> mEnabled;
16 ::ll::TypedStorage<8, 24, ::std::vector<::AABB>> mOriginalAABBs;
17 ::ll::TypedStorage<8, 24, ::std::vector<::AABB>> mTransformedAABBs;
18 // NOLINTEND
19
20#ifdef LL_PLAT_S
21#else // LL_PLAT_C
22public:
23 // prevent constructor by default
24 BlockShapeComponentData& operator=(BlockShapeComponentData const&);
25 BlockShapeComponentData(BlockShapeComponentData const&);
26 BlockShapeComponentData();
27
28#endif
29public:
30 // member functions
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCAPI ::BlockShapeComponentData& operator=(::BlockShapeComponentData&&);
34#endif
35
36 MCAPI ~BlockShapeComponentData();
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static void transformAABBs(::BlockShapeComponentData& data, ::Matrix const& transform);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCAPI void $dtor();
49 // NOLINTEND
50};
Definition AABB.h:18
Definition Matrix.h:10