LeviLamina
Loading...
Searching...
No Matches
RopePoints.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Vec3;
8struct RopePoint;
9// clang-format on
10
11struct RopePoints {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 8, uint64> mSize;
16 ::ll::TypedStorage<8, 24, ::std::vector<::RopePoint>> mPoints;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22#ifdef LL_PLAT_C
23 MCAPI ::Vec3 getInterpolated(uint64 index, float a) const;
24
25 MCFOLD uint64 size() const;
26#endif
27
28 MCAPI ~RopePoints();
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCFOLD void $dtor();
35 // NOLINTEND
36};
Definition Vec3.h:10
Definition RopePoint.h:8
Definition RopePoints.h:11