LeviLamina
Loading...
Searching...
No Matches
HitResultComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10class HitResultComponent {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::IHitResultContainer>> mHitResults;
15 // NOLINTEND
16
17#ifdef LL_PLAT_S
18#else // LL_PLAT_C
19public:
20 // prevent constructor by default
21 HitResultComponent();
22
23#endif
24public:
25 // member functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_C
28 MCAPI explicit HitResultComponent(::std::unique_ptr<::IHitResultContainer> container);
29
30 MCFOLD ::IHitResultContainer& get();
31#endif
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37#ifdef LL_PLAT_C
38 MCFOLD void* $ctor(::std::unique_ptr<::IHitResultContainer> container);
39#endif
40 // NOLINTEND
41};
Definition IHitResultContainer.h:10