LeviLamina
Loading...
Searching...
No Matches
RopeAABB.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class AABB;
8class Vec3;
10// clang-format on
11
12struct RopeAABB {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<4, 24, ::AABB> mBB;
17 ::ll::TypedStorage<1, 1, bool> mDenyListed;
18 // NOLINTEND
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI bool getContactPoint(::Vec3 const& nodePos, float nodeSize, ::AABBContactPoint& result) const;
24 // NOLINTEND
25};
Definition AABB.h:16
Definition Vec3.h:10
Definition AABBContactPoint.h:5
Definition RopeAABB.h:12