LeviLamina
Loading...
Searching...
No Matches
MoveResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/world/phys/AABB.h"
8
9namespace SweptMovement {
10
11struct MoveResult {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<4, 12, ::Vec3> mAccumulatedMove;
16 ::ll::TypedStorage<4, 4, float> mTotalPenetration;
17 ::ll::TypedStorage<4, 24, ::AABB> mResultShape;
18 // NOLINTEND
19};
20
21} // namespace SweptMovement
Definition MoveResult.h:11