| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <math/seadVector.h> |
| 4 | |
| 5 | namespace al { |
| 6 | class PlacementInfo; |
| 7 | |
| 8 | class GravityHolder { |
| 9 | public: |
| 10 | GravityHolder(); |
| 11 | void init(); |
| 12 | void createGravity(const PlacementInfo&); |
| 13 | bool tryCalcGravity(sead::Vector3f*, const sead::Vector3f&) const; |
| 14 | bool tryCalcBlendGravity(sead::Vector3f*, const sead::Vector3f&) const; |
| 15 | |
| 16 | private: |
| 17 | void* filler[2]; |
| 18 | }; |
| 19 | |
| 20 | static_assert(sizeof(GravityHolder) == 0x10); |
| 21 | |
| 22 | } // namespace al |
| 23 |