LeviLamina
Loading...
Searching...
No Matches
RopePointsRef.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/threading/SharedLock.h"
7
8// auto generated forward declare list
9// clang-format off
10struct RopePoints;
11// clang-format on
12
13struct RopePointsRef {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::RopePoints const&> mPoints;
18 ::ll::TypedStorage<8, 16, ::Bedrock::Threading::SharedLock<::std::shared_mutex>> mPointsSharedLock;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 RopePointsRef& operator=(RopePointsRef const&);
24 RopePointsRef(RopePointsRef const&);
25 RopePointsRef();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_C
31 MCNAPI ~RopePointsRef();
32#endif
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCNAPI void $dtor();
40#endif
41 // NOLINTEND
42};
Definition RopePoints.h:10